From e7cde7783a3df9a5ee638a6c5cac94edf6e40b94 Mon Sep 17 00:00:00 2001 From: James Garner Date: Fri, 11 Jul 2025 12:48:29 +1200 Subject: [PATCH] chore: release 3.6.1.3 --- docs/changelog.rst | 17 +++++++---------- juju/version.py | 2 +- pyproject.toml | 2 +- 3 files changed, 9 insertions(+), 12 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index b06100d1..ad5eeb12 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,13 +1,18 @@ Changelog --------- +3.6.1.3 +^^^^^^^ + +Friday 11th Jul 2025 + +* fix: don't strip valid characters from secret data by @james-garner-canonical in https://github.com/juju/python-libjuju/pull/1276 + 3.6.1.2 ^^^^^^^ Monday 26th May 2025 -## What's Changed - * chore: hint machine addresses as list of dicts by @gboutry in https://github.com/juju/python-libjuju/pull/1258 * ci: disable test that fails on all Juju versions by @dimaqq in https://github.com/juju/python-libjuju/pull/1268 * fix: creating offer when connecting to existing model, fixes #1264 by @dimaqq in https://github.com/juju/python-libjuju/pull/1265 @@ -17,8 +22,6 @@ Monday 26th May 2025 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 @@ -30,8 +33,6 @@ Wednesday 19th Mar 2025 Friday 20th Dec 2024 -## What's Changed - * add 3.5.5 schema and update SCHEMAS.md by @james-garner-canonical in https://github.com/juju/python-libjuju/pull/1223 * feat: larger default websockets frame size by @dimaqq in https://github.com/juju/python-libjuju/pull/1239 * deprecate juju.jasyncio by @EdmilsonRodrigues in https://github.com/juju/python-libjuju/pull/1221 @@ -43,8 +44,6 @@ Friday 20th Dec 2024 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 @@ -56,8 +55,6 @@ Thursday 28th Nov 2024 Thursday 11th July 2024 -## What's Changed - * fix parsing of storage constraints by @luissimas in https://github.com/juju/python-libjuju/pull/1053 * Add setuptools to tox.ini by @Aflynn50 in https://github.com/juju/python-libjuju/pull/1058 * fix(refresh): bug with revisions by @jack-w-shaw in https://github.com/juju/python-libjuju/pull/1067 diff --git a/juju/version.py b/juju/version.py index 7cc969c7..5b8eb22f 100644 --- a/juju/version.py +++ b/juju/version.py @@ -6,4 +6,4 @@ DEFAULT_ARCHITECTURE = "amd64" -CLIENT_VERSION = "3.6.1.2" +CLIENT_VERSION = "3.6.1.3" diff --git a/pyproject.toml b/pyproject.toml index 2db9bc4d..8b10dd34 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "juju" -version = "3.6.1.2" # Stop-gap until dynamic versioning is done; must be in sync with juju/version.py:CLIENT_VERSION +version = "3.6.1.3" # 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" }