Mercurial > hgrepos > Python > libs > ConfigMix
changeset 257:428158054729 v0.8.1
+++++ v0.8.1
| author | Franz Glasner <f.glasner@feldmann-mg.com> |
|---|---|
| date | Wed, 08 Jul 2020 10:35:20 +0200 |
| parents | 7e26d31f52de |
| children | 779511871cc2 |
| files | CHANGES.txt README.txt configmix/__init__.py |
| diffstat | 3 files changed, 11 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/CHANGES.txt Wed Jul 08 10:26:44 2020 +0200 +++ b/CHANGES.txt Wed Jul 08 10:35:20 2020 +0200 @@ -13,6 +13,15 @@ -------------- .. changelog:: + :version: 0.8.1 + :released: 2020-07-08 + + .. change:: + :tags: bugfix + + Allow non-string keys when merging configurations. + +.. changelog:: :version: 0.8 :released: 2020-07-08
--- a/README.txt Wed Jul 08 10:26:44 2020 +0200 +++ b/README.txt Wed Jul 08 10:35:20 2020 +0200 @@ -3,7 +3,7 @@ .. _README: :Author: Franz Glasner -:Version: 0.8 +:Version: 0.8.1 :Date: |VCSJustDate| :Copyright: (c) 2015–2020, Franz Glasner. All rights reserved.
--- a/configmix/__init__.py Wed Jul 08 10:26:44 2020 +0200 +++ b/configmix/__init__.py Wed Jul 08 10:35:20 2020 +0200 @@ -13,7 +13,7 @@ from __future__ import division, print_function, absolute_import -__version__ = "0.8" +__version__ = "0.8.1" __revision__ = "|VCSRevision|" __date__ = "|VCSJustDate|"
