From ac20bdb5db71c7cf7cc6d34cd62826f85300ba05 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Tue, 15 Oct 2024 09:59:28 +0200 Subject: [PATCH] chore: setting version to 5.8.2 --- client/package.json | 2 +- docs/changes.rst | 23 +++++++++++++++++++++++ docs/changes/contributors/5.8.2.rst | 2 ++ docs/conf.py | 2 +- weblate/utils/version.py | 2 +- 5 files changed, 28 insertions(+), 3 deletions(-) create mode 100644 docs/changes/contributors/5.8.2.rst diff --git a/client/package.json b/client/package.json index 6b2a88451ca4..ce15a04e8841 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "weblate-client-libs", - "version": "5.8.1", + "version": "5.8.2", "description": "Used to manage 3rd party libraries for the client side.", "license": "GPL-3.0-or-later", "scripts": { diff --git a/docs/changes.rst b/docs/changes.rst index b61b52e2ebe6..d99ae92e6640 100644 --- a/docs/changes.rst +++ b/docs/changes.rst @@ -1,3 +1,26 @@ +Weblate 5.8.2 +------------- + +Not yet released. + +**New features** + +**Improvements** + +**Bug fixes** + +**Compatibility** + +**Upgrading** + +Please follow :ref:`generic-upgrade-instructions` in order to perform update. + +**Contributors** + +.. include:: changes/contributors/5.8.2.rst + +`All changes in detail `__. + Weblate 5.8.1 ------------- diff --git a/docs/changes/contributors/5.8.2.rst b/docs/changes/contributors/5.8.2.rst new file mode 100644 index 000000000000..aeede5502476 --- /dev/null +++ b/docs/changes/contributors/5.8.2.rst @@ -0,0 +1,2 @@ +.. + scripts/prepare-release fills this diff --git a/docs/conf.py b/docs/conf.py index 307a85e59e4a..284fe4a80346 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -59,7 +59,7 @@ def setup(app) -> None: author = "Michal Čihař" # The full version, including alpha/beta/rc tags -release = "5.8.1" +release = "5.8.2" # -- General configuration --------------------------------------------------- diff --git a/weblate/utils/version.py b/weblate/utils/version.py index 3c74afbc02c5..2ed872443e57 100644 --- a/weblate/utils/version.py +++ b/weblate/utils/version.py @@ -25,7 +25,7 @@ def get_root_dir(): # Weblate version -VERSION = "5.8.1" +VERSION = "5.8.2-dev" # Version string without suffix VERSION_BASE = VERSION.replace("-dev", "").replace("-rc", "")