diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 7d732de..faabbda 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.3.0 (2024-03-10) + +### Feat + +- Introduce hierarchy between env and config (#16) +- Support PEP 561 (#13) + ## v0.2.0 (2024-01-01) ### Feat diff --git a/pyproject.toml b/pyproject.toml index 24c7c55..521e925 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,5 @@ [tool.commitizen] -version = "0.2.0" +version = "0.3.0" name = "cz_conventional_commits" tag_format = "v$version" version_files = [ @@ -11,7 +11,7 @@ changelog_file = "docs/CHANGELOG.md" [tool.poetry] name = "pit-viper" -version = "0.2.0" +version = "0.3.0" description = "Pit-Viper is a Python package that offers configuration management capabilities like the Viper package in Golang." authors = ["Leo Schleier <43878374+leoschleier@users.noreply.github.com>"] license = "MIT" diff --git a/src/pit/viper/__version__.py b/src/pit/viper/__version__.py index 8daac4d..d9120c7 100644 --- a/src/pit/viper/__version__.py +++ b/src/pit/viper/__version__.py @@ -1,2 +1,2 @@ """Version information for pit-viper.""" -__version__ = "0.2.0" +__version__ = "0.3.0"