Mercurial > hgrepos > Python > libs > ConfigMix
changeset 237:13711ba8e81e
Adjust copyright year to 2020
| author | Franz Glasner <fzglas.hg@dom66.de> |
|---|---|
| date | Wed, 13 May 2020 09:33:34 +0200 |
| parents | c97ca53a73e1 |
| children | be04384727c8 |
| files | LICENSE.txt README.txt configmix/__init__.py configmix/compat.py configmix/config.py configmix/ini.py configmix/json.py configmix/py.py configmix/toml.py configmix/variables.py configmix/yaml.py docs/conf.py |
| diffstat | 12 files changed, 12 insertions(+), 12 deletions(-) [+] |
line wrap: on
line diff
--- a/LICENSE.txt Wed May 13 09:26:29 2020 +0200 +++ b/LICENSE.txt Wed May 13 09:33:34 2020 +0200 @@ -1,4 +1,4 @@ -Copyright (c) 2015-2019, Franz Glasner +Copyright (c) 2015-2020, Franz Glasner All rights reserved. Redistribution and use in source and binary forms, with or without
--- a/README.txt Wed May 13 09:26:29 2020 +0200 +++ b/README.txt Wed May 13 09:33:34 2020 +0200 @@ -5,7 +5,7 @@ :Author: Franz Glasner :Version: 0.7.2 :Date: |VCSJustDate| -:Copyright: (c) 2015–2019, Franz Glasner. +:Copyright: (c) 2015–2020, Franz Glasner. All rights reserved. :License: 3-clause BSD License. See :ref:`LICENSE.txt <license>` for more details.
--- a/configmix/__init__.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/__init__.py Wed May 13 09:33:34 2020 +0200 @@ -2,7 +2,7 @@ """A library for helping with configuration files. :Author: Franz Glasner -:Copyright: (c) 2015–2019, Franz Glasner. +:Copyright: (c) 2015–2020, Franz Glasner. All rights reserved. :License: 3-clause BSD License. See LICENSE.txt for details.
--- a/configmix/compat.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/compat.py Wed May 13 09:33:34 2020 +0200 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # :- -# :Copyright: (c) 2015-2019, Franz Glasner. All rights reserved. +# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved. # :License: 3-clause BSD. See LICENSE.txt for details. # :- """Some minimal compatibility shim between Python2 and Python3
--- a/configmix/config.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/config.py Wed May 13 09:33:34 2020 +0200 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # :- -# :Copyright: (c) 2015-2019, Franz Glasner. All rights reserved. +# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved. # :License: 3-clause BSD. See LICENSE.txt for details. # :- """The unified configuration dictionary with attribute support or
--- a/configmix/ini.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/ini.py Wed May 13 09:33:34 2020 +0200 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # :- -# :Copyright: (c) 2015-2019, Franz Glasner. All rights reserved. +# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved. # :License: 3-clause BSD. See LICENSE.txt for details. # :- """Read INI-style configuration files.
--- a/configmix/json.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/json.py Wed May 13 09:33:34 2020 +0200 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # :- -# :Copyright: (c) 2018-2019, Franz Glasner. All rights reserved. +# :Copyright: (c) 2018-2020, Franz Glasner. All rights reserved. # :License: 3-clause BSD. See LICENSE.txt for details. # :- """Read JSON-style configuration files.
--- a/configmix/py.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/py.py Wed May 13 09:33:34 2020 +0200 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # :- -# :Copyright: (c) 2015-2019, Franz Glasner. All rights reserved. +# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved. # :License: 3-clause BSD. See LICENSE.txt for details. # :- """Read configuration settings from Python files.
--- a/configmix/toml.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/toml.py Wed May 13 09:33:34 2020 +0200 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # :- -# :Copyright: (c) 2015-2019, Franz Glasner. All rights reserved. +# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved. # :License: 3-clause BSD. See LICENSE.txt for details. # :- """Read TOML style configuration files.
--- a/configmix/variables.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/variables.py Wed May 13 09:33:34 2020 +0200 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # :- -# :Copyright: (c) 2015-2019, Franz Glasner. All rights reserved. +# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved. # :License: 3-clause BSD. See LICENSE.txt for details. # :- """Variable interpolation: implementation of namespaces and filters
--- a/configmix/yaml.py Wed May 13 09:26:29 2020 +0200 +++ b/configmix/yaml.py Wed May 13 09:33:34 2020 +0200 @@ -1,6 +1,6 @@ # -*- coding: utf-8 -*- # :- -# :Copyright: (c) 2015-2019, Franz Glasner. All rights reserved. +# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved. # :License: 3-clause BSD. See LICENSE.txt for details. # :- """Simple wrapper for :mod:`yaml` to support all-unicode strings when
--- a/docs/conf.py Wed May 13 09:26:29 2020 +0200 +++ b/docs/conf.py Wed May 13 09:33:34 2020 +0200 @@ -24,7 +24,7 @@ # -- Project information ----------------------------------------------------- project = 'ConfigMix' -copyright = u('2015–2019, Franz Glasner. All rights reserved') +copyright = u('2015–2020, Franz Glasner. All rights reserved') author = 'Franz Glasner' # The short X.Y version
