changeset 593:f454889e41fa

Adjust copyright year (the end) to 2022
author Franz Glasner <fzglas.hg@dom66.de>
date Sun, 09 Jan 2022 21:04:11 +0100
parents eae394e86e22
children 238e94aacef6
files LICENSE.txt README.txt configmix/__init__.py configmix/_py_helper.h configmix/_speedups.c configmix/compat.py configmix/config.py configmix/constants.py configmix/extras/__init__.py configmix/extras/aws.py configmix/ini.py configmix/json.py configmix/py.py configmix/toml.py configmix/variables.py configmix/yaml.py docs/conf.py
diffstat 17 files changed, 17 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/LICENSE.txt	Sun Jan 09 16:12:48 2022 +0100
+++ b/LICENSE.txt	Sun Jan 09 21:04:11 2022 +0100
@@ -1,4 +1,4 @@
-Copyright (c) 2015-2021, Franz Glasner
+Copyright (c) 2015-2022, Franz Glasner
 All rights reserved.
 
 Redistribution and use in source and binary forms, with or without
--- a/README.txt	Sun Jan 09 16:12:48 2022 +0100
+++ b/README.txt	Sun Jan 09 21:04:11 2022 +0100
@@ -5,7 +5,7 @@
 :Author:     Franz Glasner
 :Version:    0.20
 :Date:       |VCSJustDate|
-:Copyright:  (c) 2015–2021, Franz Glasner.
+:Copyright:  (c) 2015–2022, Franz Glasner.
              All rights reserved.
 :License:    BSD 3-Clause "New" or "Revised" License.
              See :ref:`LICENSE.txt <license>` for more details.
--- a/configmix/__init__.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/__init__.py	Sun Jan 09 21:04:11 2022 +0100
@@ -2,7 +2,7 @@
 """A library for helping with configuration files.
 
 :Author:    Franz Glasner
-:Copyright: (c) 2015–2021, Franz Glasner.
+:Copyright: (c) 2015–2022, Franz Glasner.
             All rights reserved.
 :License:   BSD 3-Clause "New" or "Revised" License.
             See LICENSE.txt for details.
--- a/configmix/_py_helper.h	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/_py_helper.h	Sun Jan 09 21:04:11 2022 +0100
@@ -4,7 +4,7 @@
  *
  * Also contains some interesting backports from later Python versions.
  *
- * :Copyright: (c) 2021, Franz Glasner. All rights reserved.
+ * :Copyright: (c) 2021-2022, Franz Glasner. All rights reserved.
  * :License:   BSD-3-Clause. See LICENSE.txt for details.
  */
 
--- a/configmix/_speedups.c	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/_speedups.c	Sun Jan 09 21:04:11 2022 +0100
@@ -2,7 +2,7 @@
 /*
  * Speedups for configmix.
  *
- * :Copyright: (c) 2021, Franz Glasner. All rights reserved.
+ * :Copyright: (c) 2021-2022, Franz Glasner. All rights reserved.
  * :License:   BSD-3-Clause. See LICENSE.txt for details.
  */
 
--- a/configmix/compat.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/compat.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2021, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Some minimal compatibility shim between Python2 and Python3
--- a/configmix/config.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/config.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2021, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """The unified configuration dictionary with attribute support or
--- a/configmix/constants.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/constants.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2021, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Some important public contants
--- a/configmix/extras/__init__.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/extras/__init__.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Sub-package for some extras implementations.
--- a/configmix/extras/aws.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/extras/aws.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """AWS namespace implementation.
--- a/configmix/ini.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/ini.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Read INI-style configuration files.
--- a/configmix/json.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/json.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2018-2020, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2018-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Read JSON-style configuration files.
--- a/configmix/py.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/py.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Read configuration settings from Python files.
--- a/configmix/toml.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/toml.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2020, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Read TOML style configuration files.
--- a/configmix/variables.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/variables.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2021, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Variable interpolation: implementation of namespaces and filters
--- a/configmix/yaml.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/configmix/yaml.py	Sun Jan 09 21:04:11 2022 +0100
@@ -1,6 +1,6 @@
 # -*- coding: utf-8 -*-
 # :-
-# :Copyright: (c) 2015-2021, Franz Glasner. All rights reserved.
+# :Copyright: (c) 2015-2022, Franz Glasner. All rights reserved.
 # :License:   BSD-3-Clause. See LICENSE.txt for details.
 # :-
 """Simple wrapper for :mod:`yaml` to support all-unicode strings when
--- a/docs/conf.py	Sun Jan 09 16:12:48 2022 +0100
+++ b/docs/conf.py	Sun Jan 09 21:04:11 2022 +0100
@@ -24,7 +24,7 @@
 # -- Project information -----------------------------------------------------
 
 project = 'ConfigMix'
-copyright = u('2015–2021, Franz Glasner. All rights reserved')
+copyright = u('2015–2022, Franz Glasner. All rights reserved')
 author = 'Franz Glasner'
 
 # The short X.Y version