diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d12d8e..763570a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.0.0 (2024-02-01) + +### Feat + +- **pydantic**: Rework Bitwarden Client with pydantic classes + Usage + ## 0.7.0 (2023-08-09) ### Features diff --git a/pyproject.toml b/pyproject.toml index cc430e5..956eea3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "python-vaultwarden" -version = "0.7.0" +version = "1.0.0" description = "Admin Vaultwarden and Simple Bitwarden Python Client" authors = [ { name = "Lyonel Martinez", email = "lyonel.martinez@numberly.com" }, @@ -141,7 +141,7 @@ no_implicit_optional = true show_error_codes = true [tool.commitizen] -version = "0.7.0" +version = "1.0.0" tag_format = "$version" update_changelog_on_bump = true version_files = [ diff --git a/src/vaultwarden/__version__.py b/src/vaultwarden/__version__.py index 49e0fc1..5becc17 100644 --- a/src/vaultwarden/__version__.py +++ b/src/vaultwarden/__version__.py @@ -1 +1 @@ -__version__ = "0.7.0" +__version__ = "1.0.0"