15
0
forked from pool/python-attrs

- update to 19.1.0

* Fixed a bug where deserialized objects with cache_hash=True could have
    incorrect hash code values
 * Add is_callable, deep_iterable, and deep_mapping validators.
 * Fixed stub files to prevent errors raised by mypy's
    disallow_any_generics = True option.
 * Attributes with init=False now can follow after kw_only=True attributes.
 * attrs now has first class support for defining exception classes.
 * Clarified documentation for hashing to warn that hashable objects should
    be deeply immutable

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-attrs?expand=0&rev=20
This commit is contained in:
2019-03-04 20:22:32 +00:00
committed by Git OBS Bridge
parent 4148ec869f
commit 7fb526ce71
4 changed files with 21 additions and 5 deletions

View File

@@ -1,3 +1,17 @@
-------------------------------------------------------------------
Mon Mar 4 20:07:57 UTC 2019 - Ondřej Súkup <mimi.vx@gmail.com>
- update to 19.1.0
* Fixed a bug where deserialized objects with cache_hash=True could have
incorrect hash code values
* Add is_callable, deep_iterable, and deep_mapping validators.
* Fixed stub files to prevent errors raised by mypy's
disallow_any_generics = True option.
* Attributes with init=False now can follow after kw_only=True attributes.
* attrs now has first class support for defining exception classes.
* Clarified documentation for hashing to warn that hashable objects should
be deeply immutable
-------------------------------------------------------------------
Thu Dec 6 10:06:08 UTC 2018 - Tomáš Chvátal <tchvatal@suse.com>