Mercurial > hgrepos > Python > libs > ConfigMix
comparison configmix/__init__.py @ 290:aec97edf7945
Prepare for new dev: bump version to 0.13.dev1 and adjust copyright year for most important files
| author | Franz Glasner <f.glasner@feldmann-mg.com> |
|---|---|
| date | Wed, 10 Feb 2021 13:43:29 +0100 |
| parents | c50548709dac |
| children | 6f0bf673d4ff |
comparison
equal
deleted
inserted
replaced
| 289:6c7b71ae3405 | 290:aec97edf7945 |
|---|---|
| 1 # -*- coding: utf-8 -*- | 1 # -*- coding: utf-8 -*- |
| 2 """A library for helping with configuration files. | 2 """A library for helping with configuration files. |
| 3 | 3 |
| 4 :Author: Franz Glasner | 4 :Author: Franz Glasner |
| 5 :Copyright: (c) 2015–2020, Franz Glasner. | 5 :Copyright: (c) 2015–2021, Franz Glasner. |
| 6 All rights reserved. | 6 All rights reserved. |
| 7 :License: 3-clause BSD License. | 7 :License: 3-clause BSD License. |
| 8 See LICENSE.txt for details. | 8 See LICENSE.txt for details. |
| 9 :ID: @(#) $Header$ | 9 :ID: @(#) $Header$ |
| 10 | 10 |
| 11 """ | 11 """ |
| 12 | 12 |
| 13 from __future__ import division, print_function, absolute_import | 13 from __future__ import division, print_function, absolute_import |
| 14 | 14 |
| 15 | 15 |
| 16 __version__ = "0.12" | 16 __version__ = "0.13.dev1" |
| 17 | 17 |
| 18 __revision__ = "|VCSRevision|" | 18 __revision__ = "|VCSRevision|" |
| 19 __date__ = "|VCSJustDate|" | 19 __date__ = "|VCSJustDate|" |
| 20 | 20 |
| 21 __all__ = ["load", "safe_load", | 21 __all__ = ["load", "safe_load", |
