Skip to content

Commit

Permalink
release: cut the 0.8.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nymous committed Sep 10, 2023
1 parent 2c83027 commit 60c1506
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 @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
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.7.2"
version = "0.8.0"
description = "A simple extension to Pydantic BaseSettings that can retrieve secrets from Hashicorp Vault"
authors = ["Thomas Gaudin <thomas.gaudin@centraliens-lille.org>"]
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.7.2"
__version__ = "0.8.0"

from .vault_settings import VaultParameterError, vault_config_settings_source

Expand Down

0 comments on commit 60c1506

Please sign in to comment.