14
0

Accepting request 691745 from home:mcalabkova:branches:devel:languages:python

- update to version 4.9.3
  4.5.0:
  * Add support for Python 3.5 and 3.6.
  * Drop support for Python 2.6, 3.2, and 3.3.
  * Drop support for ‘setup.py test’. Use zope.testrunner instead.
  4.6.0
  * Add support for Python 3.7.
  * Choice, SimpleVocabulary and SimpleTerm all gracefully handle 
    using Unicode token values with non-ASCII characters by encoding 
    them with the backslashreplace error handler.
  * Add fields and interfaces representing Python’s numeric tower.
  * More various enhancements.
  4.6.1
  * Fix the Field constructor to again allow MessageID values for 
    the description.
  4.6.2
  * Fix checking a field’s constraint to set the field and value 
    properties if the constraint raises a ValidationError.
  4.7.0
  * Give various classes some fields.
  4.8.0
  * Fix passing None as the description to a field constructor.
  4.9.0
  * Make NativeString and NativeStringLine distinct types.
  * Fix Field.getDoc() when value_type or key_type is present. 
  * Make DottedName accept leading underscores for each segment.
  4.9.1
  * Fix SimpleTerm token for non-ASCII bytes values.
  4.9.2
  * Make sure that the title for IObject.validate_invariants is a

OBS-URL: https://build.opensuse.org/request/show/691745
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-zope.schema?expand=0&rev=17
This commit is contained in:
Tomáš Chvátal
2019-04-05 09:03:19 +00:00
committed by Git OBS Bridge
parent a64ecdcbfa
commit 7932c32ae4
7 changed files with 72 additions and 131 deletions

View File

@@ -1,3 +1,42 @@
-------------------------------------------------------------------
Tue Apr 2 11:44:31 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
- update to version 4.9.3
4.5.0:
* Add support for Python 3.5 and 3.6.
* Drop support for Python 2.6, 3.2, and 3.3.
* Drop support for setup.py test. Use zope.testrunner instead.
4.6.0
* Add support for Python 3.7.
* Choice, SimpleVocabulary and SimpleTerm all gracefully handle
using Unicode token values with non-ASCII characters by encoding
them with the backslashreplace error handler.
* Add fields and interfaces representing Pythons numeric tower.
* More various enhancements.
4.6.1
* Fix the Field constructor to again allow MessageID values for
the description.
4.6.2
* Fix checking a fields constraint to set the field and value
properties if the constraint raises a ValidationError.
4.7.0
* Give various classes some fields.
4.8.0
* Fix passing None as the description to a field constructor.
4.9.0
* Make NativeString and NativeStringLine distinct types.
* Fix Field.getDoc() when value_type or key_type is present.
* Make DottedName accept leading underscores for each segment.
4.9.1
* Fix SimpleTerm token for non-ASCII bytes values.
4.9.2
* Make sure that the title for IObject.validate_invariants is a
unicode string.
4.9.3
* Fixed a ReST error in getDoc() results when having “subfields”
with titles.
- drop *-doc subpackage, use multibuild instead
-------------------------------------------------------------------
Tue Dec 4 13:11:31 UTC 2018 - Matej Cepl <mcepl@suse.com>