Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release 3.6.0.0 #1224

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -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
^^^^^^^

Expand Down
2 changes: 1 addition & 1 deletion juju/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@

DEFAULT_ARCHITECTURE = "amd64"

CLIENT_VERSION = "3.5.2.0"
CLIENT_VERSION = "3.6.0.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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" }
Expand Down
Loading