diff --git a/docs/changelog.rst b/docs/changelog.rst index fc7240fd5..adaa842d5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,19 @@ Changelog --------- +3.6.0.0 +^^^^^^^ + +Thursday 28th Nov 2024 + +## What's Changed + +* correct parsing of storage constraints, can be specified as strings or dicts +* enable attachment of binary files as charm resources +* allow newest websockets dependency +* better type hints, should be visible through pytest-operator in your integration tests +* tested against Juju 3.5.5 and 3.6.0 + 3.5.2.0 ^^^^^^^ diff --git a/juju/version.py b/juju/version.py index a0022b094..b3e36f021 100644 --- a/juju/version.py +++ b/juju/version.py @@ -6,4 +6,4 @@ DEFAULT_ARCHITECTURE = "amd64" -CLIENT_VERSION = "3.5.2.0" +CLIENT_VERSION = "3.6.0.0" diff --git a/pyproject.toml b/pyproject.toml index eeb170742..b3c2d4277 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "juju" -version = "3.5.2.0" # Stop-gap until dynamic versioning is done; must be in sync with juju/version.py:CLIENT_VERSION +version = "3.6.0.0" # Stop-gap until dynamic versioning is done; must be in sync with juju/version.py:CLIENT_VERSION description = "Python library for Juju" readme = "docs/readme.rst" license = { file = "LICENSE" }