Skip to content

Commit

Permalink
release: cut the 1.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nymous committed Nov 2, 2023
1 parent cfc8c2f commit 7137cea
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.0.0] - 2023-11-02

Thank you, @kazauwa, for your contribution!

### Breaking changes
**Field value priority change**

Initially, values in a Config class took higher priority over environment variables, effectively making it hard to override hardcoded defaults
outside the source code. This release addresses this inconvenience and makes the ordering consistent with [Pydantic](https://docs.pydantic.dev/latest/concepts/pydantic_settings/#field-value-priority) and [12 Factor App](https://12factor.net/config).
outside the source code. This release addresses this inconvenience and makes the ordering consistent with [Pydantic](https://docs.pydantic.dev/1.10/usage/settings/#field-value-priority) and [12 Factor App](https://12factor.net/config).

### Changed

Expand Down Expand Up @@ -142,7 +144,8 @@ This release has been YANKED because of a bad deployment
### Added
- First alpha release

[Unreleased]: https://github.com/nymous/pydantic-vault/compare/0.8.0...HEAD
[Unreleased]: https://github.com/nymous/pydantic-vault/compare/1.0.0...HEAD
[1.0.0]: https://github.com/nymous/pydantic-vault/compare/0.8.0...1.0.0
[0.8.0]: https://github.com/nymous/pydantic-vault/compare/0.7.2...0.8.0
[0.7.2]: https://github.com/nymous/pydantic-vault/compare/0.7.1...0.7.2
[0.7.1]: https://github.com/nymous/pydantic-vault/compare/0.7.0...0.7.1
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pydantic-vault"
version = "0.8.0"
version = "1.0.0"
description = "A simple extension to Pydantic BaseSettings that can retrieve secrets from Hashicorp Vault"
authors = ["Thomas Gaudin <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion src/pydantic_vault/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.8.0"
__version__ = "1.0.0"

from .vault_settings import VaultParameterError, vault_config_settings_source

Expand Down

0 comments on commit 7137cea

Please sign in to comment.