# HG changeset patch # User Franz Glasner # Date 1639936068 -3600 # Node ID 45ad19fe1e5bfbf546970f80c023c5a9384afb68 # Parent df0bb39617d67aca9b336010f9dcf51f12e7d1e5 Changelog diff -r df0bb39617d6 -r 45ad19fe1e5b CHANGES.txt --- a/CHANGES.txt Sun Dec 19 18:37:37 2021 +0100 +++ b/CHANGES.txt Sun Dec 19 18:47:48 2021 +0100 @@ -12,6 +12,26 @@ Pre-1.0 Series -------------- +n/a (0.20) (not released) +~~~~~~~~~~~~~~~~~~~~~~~~~ + +- **[breaking]** + Removed some unused keyword arguments from methods -- also public ones: + + * :py:meth:`~configmix.config.Configuration.expand_ref_uri` + * :py:meth:`~configmix.config.Configuration.expand_if_reference` + * :py:meth:`~configmix.config.Configuration._lookupref` + +- **[misc]** + Improved overall performance by a factor of 0.25 to 0.3 + +- **[bugfix]** + Implement :py:meth:`~configmix.config.Configuration.values` and + :py:meth:`~configmix.config.Configuration.items` that yield non-interpolated + configuration values. This is needed now because attribute access now + yields interpolated results. + + 0.19.2 (2021-12-16) ~~~~~~~~~~~~~~~~~~~ diff -r df0bb39617d6 -r 45ad19fe1e5b docs/changes.rst --- a/docs/changes.rst Sun Dec 19 18:37:37 2021 +0100 +++ b/docs/changes.rst Sun Dec 19 18:47:48 2021 +0100 @@ -16,6 +16,16 @@ Breaking Changes ================ +0.20 +---- + +- Removed some unneeded keyword arguments from methods -- also public ones: + + * Configuration.expand_ref_uri() + * Configuration.expand_if_reference() + * Configuration._lookupref() + + 0.19 ----