From e3a9d3b2ec6920a27a8676e0f54bb2ad1a61620b Mon Sep 17 00:00:00 2001 From: Dima Tisnek Date: Tue, 18 Mar 2025 16:30:41 +0900 Subject: [PATCH] chore: release 3.6.1.1 --- docs/changelog.rst | 13 +++++++++++++ juju/version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index 674d5a4f..b5996364 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,19 @@ Changelog --------- +3.6.1.1 +^^^^^^^ + +Wednesday 19th Mar 2025 + +## What's Changed + +* chore: fix changelog format by @dimaqq in https://github.com/juju/python-libjuju/pull/1248 +* docs: move docs from juju.is by @tmihoc in https://github.com/juju/python-libjuju/pull/1244 +* chore: type hint improvements from the helper thread branch by @dimaqq in https://github.com/juju/python-libjuju/pull/1250 +* chore: remove pyrfc3339 and change to datetime.datetime.fromisoformat… by @EdmilsonRodrigues in https://github.com/juju/python-libjuju/pull/1247 +* fix: create websockets ConnectionClosed error correctly by @james-garner-canonical in https://github.com/juju/python-libjuju/pull/1255 + 3.6.1.0 ^^^^^^^ diff --git a/juju/version.py b/juju/version.py index b4c849f9..dab64bba 100644 --- a/juju/version.py +++ b/juju/version.py @@ -6,4 +6,4 @@ DEFAULT_ARCHITECTURE = "amd64" -CLIENT_VERSION = "3.6.1.0" +CLIENT_VERSION = "3.6.1.1" diff --git a/pyproject.toml b/pyproject.toml index 6de962dd..da89b6a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "juju" -version = "3.6.1.0" # Stop-gap until dynamic versioning is done; must be in sync with juju/version.py:CLIENT_VERSION +version = "3.6.1.1" # 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" }