2021-01-05 -- 1.8.1
* feature: add tox helpers to make pipy and debian releases
* fix: use TypedDict if python version > 3.8 only, otherwise use a Dict
(TypedDict were imported from typing_extension 3.7.4, which is not
available on debian buster)
2020-11-22 -- 1.8.0
* deprecation: add subclass to DeprecationWarning with structured
information (TargetRenamedDeprecationWarning,
TargetDeprecatedDeprecationWarning, TargetRemovedDeprecationWarning,
TargetMovedDeprecationWarning)
* deprecation: add tests to ensure that DeprecationWarning target the
correct line and the correct file
* deprecation: add types annotations
* declare that logilab.common ships type annotations (py.typed file)
* various bug fixes
2020-09-03 -- 1.7.3
* type: declare that logilab-common ship type annotations
* make the build reproducible
* fix(deprecation): stacked decorators breaks getting the real callable
__name__ attribute
* fix: in some situation (using several deprecation functions), renaming
deprecation utils failed to point to the correct new name and used random
internal names of the module
2020-06-24 -- 1.7.2
* fix(deprecation): rollback to old class_deprecation being a class behavior
2020-06-11 -- 1.7.1
* fix: import error on re.Pattern with python < 3.7
2020-06-10 -- 1.7.0
* logilab-common requires python 3.6 now
* greatly improve our CI and migrate it to heptapod/gitlab-ci
* black the whole code base
* move test suit to pytest
* use check-manifest and fix related bugs in MANIFEST.in
* integrates flake8 and please the flake8 gods
* various fixes
* class_deprecation is not a class anymore
* pytest 5.4.2 breaks tests, pin to 5.4.1 for now
2020-05-25 -- 1.6.4
* fix: rollback to old class_deprecation being a class behavior
* fix: @functools.wraps broke callable_renamed, write a @lazy_wraps and
use it everywhere in logilab.common.deprecation
* add docstring to LazyObject
2020-05-11 -- 1.6.3
* fix: metaclass conflict in class_deprecated
2020-05-11 -- 1.6.2
* fix: explicitly requires python 3.6 in setup.py
2020-05-01 -- 1.6.1
* bug fix, bad usage of callable_renamed
2020-04-30 -- 1.6.0
* logilab-common requires python >= 3.6 now
* use pyannotates to introduces types in all the modules
* introduce a list of new functions in logilab.common.deprecation: callable_renamed, attribute_renamed, argument_renamed, argument_remove
* renamed "renamed" to "callable_renamed", "deprecated" to
"callable_deprecated", "moved" to "callable_moved" for coherence
* refactor the whole logilab.common.deprecation to simplify its code
* automatically detect from which modules a deprecated utils is called
* correctly display the line where a deprecated utils is used
* various small fixes, thx mypy
2019-12-04 -- 1.5.2
* documentation is now available at https://logilab-common.readthedocs.io/
* drop python2 support, python >= 3.3 is the new required version
* therefor, drop dependency on six
* drop rpm packaging
* registry: add a Registry.add_select_best_listener method to subscribe to
the result of a _select_best of a Registry.
* shellutils: deprecate 'input' as argument of RawInput in favor of
'input_function'