Mercurial > hgrepos > Python > libs > ConfigMix
changeset 520:45ad19fe1e5b
Changelog
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Sun, 19 Dec 2021 18:47:48 +0100 |
| parents | df0bb39617d6 |
| children | 1001701be682 |
| files | CHANGES.txt docs/changes.rst |
| diffstat | 2 files changed, 30 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- 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) ~~~~~~~~~~~~~~~~~~~
--- 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 ----
