Skip to content

Commit 87eeb09

Browse files
committed
Update version
1 parent 9fd6586 commit 87eeb09

File tree

2 files changed

+20
-6
lines changed

2 files changed

+20
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ All notable changes to this project will be documented in this file.
44

55
## [Unreleased]
66

7+
8+
## [0.9.1] - 2023-08-06
9+
710
### Added
811

912
- Allow to pass a `ignore_missing_paths` parameter to each config method
1013
- Support for Hashicorp Vault credentials (in `config.contrib`)
11-
12-
### Changed
13-
1414
- Added a `validate` method to validate `Configuration` instances against a [json schema](https://json-schema.org/understanding-json-schema/basics.html#basics).
1515

16+
1617
## [0.9.0] - 2023-08-04
1718

1819
### Added
@@ -36,12 +37,14 @@ All notable changes to this project will be documented in this file.
3637

3738
- Configurations from ini file won't be converted to lower case if `lowercase_keys = False`
3839

40+
3941
## [0.8.2] - 2021-01-30
4042

4143
### Fixed
4244

4345
- The behavior of merging sets was incorrect since version 0.8.0
4446

47+
4548
## [0.8.0] - 2020-08-01
4649

4750
### Changed
@@ -65,24 +68,28 @@ with cfg.dotted_iter():
6568
- Support for _.env_-type files
6669
- Option for deep interpolation. To activate that mode, use one of the enum values in `InterpolateEnumType` as the `interpolate_type` parameter. This allows for hierachical _templates_, in which configuration objects use the values from lower ones to interpolate instead of simply overriding.
6770

71+
6872
## [0.7.1] - 2020-07-05
6973

7074
### Fixed
7175

7276
- Installation with `poetry` because of changes to pytest-black
7377

78+
7479
## [0.7.0] - 2020-05-06
7580

7681
### Added
7782

7883
- New string interpolation feature
7984

85+
8086
## [0.6.1] - 2020-04-24
8187

8288
### Changed
8389

8490
- Added a `separator` argument to `config` function
8591

92+
8693
## [0.6.0] - 2020-01-22
8794

8895
### Added
@@ -91,6 +98,7 @@ with cfg.dotted_iter():
9198
- Added a `reload` method to refresh a `Configuration` instance (can be used to reload a configuration from a file that may have changed).
9299
- Added a `configs` method to expose the underlying instances of a `ConfigurationSet`
93100

101+
94102
## [0.5.0] - 2020-01-08
95103

96104
### Added
@@ -103,13 +111,15 @@ with cfg.dotted_iter():
103111

104112
- Changed the `__repr__` and `__str__` methods so possibly sensitive values are not printed by default.
105113

114+
106115
## [0.4.0] - 2019-10-11
107116

108117
### Added
109118

110119
- Allow path-based failures using the `config` function.
111120
- Added a levels option to the dict-like objects.
112121

122+
113123
## [0.3.1] - 2019-08-20
114124

115125
### Added
@@ -118,26 +128,30 @@ with cfg.dotted_iter():
118128
- TravisCI support
119129
- Codecov
120130

131+
121132
## [0.3.0] - 2019-08-16
122133

123134
### Changed
124135

125136
- Changed the old behavior in which every key was converted to lower case.
126137

138+
127139
## [0.2.0] - 2019-07-16
128140

129141
### Added
130142

131143
- Added Sphinx documentation
132144
- Added a `remove_levels` parameter to the config function
133145

146+
134147
## [0.1.0] - 2019-01-16
135148

136149
### Added
137150

138151
- Initial version
139152

140-
[unreleased]: https://github.com/tr11/python-configuration/compare/0.9.0...HEAD
153+
[unreleased]: https://github.com/tr11/python-configuration/compare/0.9.1...HEAD
154+
[0.9.1]: https://github.com/tr11/python-configuration/compare/0.9.0...0.9.1
141155
[0.9.0]: https://github.com/tr11/python-configuration/compare/0.8.3...0.9.0
142156
[0.8.3]: https://github.com/tr11/python-configuration/compare/0.8.2...0.8.3
143157
[0.8.2]: https://github.com/tr11/python-configuration/compare/0.8.0...0.8.2

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ name = "python-configuration"
99
packages = [{ include = "config" }]
1010
readme = 'README.md'
1111
repository = "https://github.com/tr11/python-configuration"
12-
version = "0.9.0"
12+
version = "0.9.1"
1313

1414
[tool.poetry.dependencies]
1515
python = "^3.8.1"
@@ -62,7 +62,7 @@ envlist = py38, py39, py310, py311
6262
[testenv]
6363
allowlist_externals = poetry
6464
commands =
65-
poetry install -v -E toml -E yaml -E azure -E aws -E gcp -E vault
65+
poetry install -v -E toml -E yaml -E azure -E aws -E gcp -E vault -E validation
6666
poetry run pytest
6767
"""
6868

0 commit comments

Comments
 (0)