configaroo 0.2.3__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {configaroo-0.2.3/src/configaroo.egg-info → configaroo-0.2.4}/PKG-INFO +2 -2
- {configaroo-0.2.3 → configaroo-0.2.4}/pyproject.toml +2 -2
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo/__init__.py +1 -1
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo/configuration.py +1 -1
- {configaroo-0.2.3 → configaroo-0.2.4/src/configaroo.egg-info}/PKG-INFO +2 -2
- {configaroo-0.2.3 → configaroo-0.2.4}/LICENSE +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/README.md +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/setup.cfg +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo/exceptions.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo/loaders/__init__.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo/loaders/json.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo/loaders/toml.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo/py.typed +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo.egg-info/SOURCES.txt +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo.egg-info/dependency_links.txt +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo.egg-info/requires.txt +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/src/configaroo.egg-info/top_level.txt +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/tests/test_configuration.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/tests/test_dynamic.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/tests/test_environment.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/tests/test_json.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/tests/test_loaders.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/tests/test_print.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/tests/test_toml.py +0 -0
- {configaroo-0.2.3 → configaroo-0.2.4}/tests/test_validation.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: configaroo
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.4
|
4
4
|
Summary: Bouncy handling of configuration files
|
5
5
|
Author-email: Geir Arne Hjelle <geirarne@gmail.com>
|
6
6
|
Maintainer-email: Geir Arne Hjelle <geirarne@gmail.com>
|
@@ -8,7 +8,7 @@ License-Expression: MIT
|
|
8
8
|
Project-URL: homepage, https://github.com/gahjelle/configaroo
|
9
9
|
Project-URL: github, https://github.com/gahjelle/configaroo
|
10
10
|
Project-URL: issues, https://github.com/gahjelle/configaroo/issues
|
11
|
-
Project-URL: changelog, https://github.com/gahjelle/configaroo/
|
11
|
+
Project-URL: changelog, https://github.com/gahjelle/configaroo/releases
|
12
12
|
Keywords: configuration,configuration-management,toml,json
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
14
14
|
Classifier: Intended Audience :: Developers
|
@@ -32,7 +32,7 @@ dynamic = ["version"]
|
|
32
32
|
homepage = "https://github.com/gahjelle/configaroo"
|
33
33
|
github = "https://github.com/gahjelle/configaroo"
|
34
34
|
issues = "https://github.com/gahjelle/configaroo/issues"
|
35
|
-
changelog = "https://github.com/gahjelle/configaroo/
|
35
|
+
changelog = "https://github.com/gahjelle/configaroo/releases"
|
36
36
|
|
37
37
|
[dependency-groups]
|
38
38
|
build = ["build>=1.2.2.post1", "twine>=6.1.0"]
|
@@ -80,7 +80,7 @@ python_version = "3.11"
|
|
80
80
|
strict = true
|
81
81
|
|
82
82
|
[tool.bumpver]
|
83
|
-
current_version = "v0.2.
|
83
|
+
current_version = "v0.2.4"
|
84
84
|
version_pattern = "vMAJOR.MINOR.PATCH"
|
85
85
|
commit_message = "bump version {old_version} -> {new_version}"
|
86
86
|
tag_message = "{new_version}"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: configaroo
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.4
|
4
4
|
Summary: Bouncy handling of configuration files
|
5
5
|
Author-email: Geir Arne Hjelle <geirarne@gmail.com>
|
6
6
|
Maintainer-email: Geir Arne Hjelle <geirarne@gmail.com>
|
@@ -8,7 +8,7 @@ License-Expression: MIT
|
|
8
8
|
Project-URL: homepage, https://github.com/gahjelle/configaroo
|
9
9
|
Project-URL: github, https://github.com/gahjelle/configaroo
|
10
10
|
Project-URL: issues, https://github.com/gahjelle/configaroo/issues
|
11
|
-
Project-URL: changelog, https://github.com/gahjelle/configaroo/
|
11
|
+
Project-URL: changelog, https://github.com/gahjelle/configaroo/releases
|
12
12
|
Keywords: configuration,configuration-management,toml,json
|
13
13
|
Classifier: Development Status :: 5 - Production/Stable
|
14
14
|
Classifier: Intended Audience :: Developers
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|