diff --git a/CHANGELOG.md b/CHANGELOG.md index 8a5279a..147dfc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + +## [0.8.0] - 2023-09-10 Thank you, @area42 and @raider444, for your contributions! ### Breaking changes @@ -14,7 +16,7 @@ I hope it won't hurt many, as Python 3.6 is unsupported since December 2021. The code hasn't changed yet, so it should still run on 3.6, we don't test it anymore though ^^' ### Added -- Support `hvac` 1.X (relaxed the upper constraint on `hvac`). Initially proposed by @area42 in #18, I just reapplied the change on top of the new main to avoid conflicts +- Support `hvac` 1.X (relaxed the upper constraint on `hvac`). Initially proposed by @area42 in #18, I just reapplied the change on top of the new main to avoid conflicts (#23) - Support providing a custom CA bundle for Vault certificate validation, or skipping SSL validation altogether (#24) ### Internal @@ -127,7 +129,8 @@ This release has been YANKED because of a bad deployment ### Added - First alpha release -[Unreleased]: https://github.com/nymous/pydantic-vault/compare/0.7.2...HEAD +[Unreleased]: https://github.com/nymous/pydantic-vault/compare/0.8.0...HEAD +[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 [0.7.0]: https://github.com/nymous/pydantic-vault/compare/0.6.0a0...0.7.0 diff --git a/pyproject.toml b/pyproject.toml index a997aa2..2d1f0d2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pydantic-vault" -version = "0.7.2" +version = "0.8.0" description = "A simple extension to Pydantic BaseSettings that can retrieve secrets from Hashicorp Vault" authors = ["Thomas Gaudin "] license = "MIT" diff --git a/src/pydantic_vault/__init__.py b/src/pydantic_vault/__init__.py index 9b4c127..cff4275 100644 --- a/src/pydantic_vault/__init__.py +++ b/src/pydantic_vault/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.7.2" +__version__ = "0.8.0" from .vault_settings import VaultParameterError, vault_config_settings_source