From 0490e09282c2ee770f5d8f68d5549307765e8cc8 Mon Sep 17 00:00:00 2001 From: necusjz Date: Fri, 19 Jun 2026 14:49:16 +1000 Subject: [PATCH] build: release v4.5.5 --- HISTORY.rst | 4 ++++ docs/_config.yml | 2 +- version.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 8cbedb9e..5bc19dbf 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +4.5.5 +++++++ +* Fix camelCase ending with `S` incorrectly treated as plural. (#553) + 4.5.4 ++++++ * Add Python 3.14 support. diff --git a/docs/_config.yml b/docs/_config.yml index bcbfcfd5..77bc6a56 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -36,7 +36,7 @@ github: pypi: https://pypi.org/project/aaz-dev/ # TODO: get version number from github -version: v4.5.4 +version: v4.5.5 # Build settings theme: minima diff --git a/version.py b/version.py index 4e8fca2b..f6866a91 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "5", "4", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("4", "5", "5", "") # _PATCH: On main and in a nightly release the patch should be one ahead of the last released build. # _SUFFIX: This is mainly for nightly builds which have the suffix ".dev$DATE". See