From 1b3230936ffbad6593a3518d96a906ce4dc2ad5e Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sun, 7 Sep 2025 21:25:39 +0300 Subject: [PATCH 1/6] Prepare 2025.9 release --- CHANGELOG.rst | 7 +++++++ python_docs_theme/__init__.py | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 07b2735..fdf60e8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,6 +1,13 @@ Changelog ========= +`2025.9 `_ +--------------------------------------------------------------------------- + +* Enable theme translation by @StanFromIreland in https://github.com/python/python-docs-theme/pull/246 +* Add Swedish translation by @yeager in https://github.com/python/python-docs-theme/pull/250 +* Pull Brazilian Portuguese, Simplified Chinese, Traditional Chinese translations from Transifex by @StanFromIreland in https://github.com/python/python-docs-theme/pull/253 + `2025.5 `_ --------------------------------------------------------------------------- diff --git a/python_docs_theme/__init__.py b/python_docs_theme/__init__.py index 6b80ad0..cc11f5e 100644 --- a/python_docs_theme/__init__.py +++ b/python_docs_theme/__init__.py @@ -9,7 +9,7 @@ from sphinx.application import Sphinx from sphinx.util.typing import ExtensionMetadata -__version__ = "2025.5" +__version__ = "2025.9" THEME_PATH = Path(__file__).resolve().parent LOCALE_DIR = THEME_PATH / "locale" From 9a65c92973062afbb34def597568891d4b304f8b Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Sun, 7 Sep 2025 21:44:27 +0300 Subject: [PATCH 2/6] Update CHANGELOG.rst Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index fdf60e8..a223abe 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -6,7 +6,7 @@ Changelog * Enable theme translation by @StanFromIreland in https://github.com/python/python-docs-theme/pull/246 * Add Swedish translation by @yeager in https://github.com/python/python-docs-theme/pull/250 -* Pull Brazilian Portuguese, Simplified Chinese, Traditional Chinese translations from Transifex by @StanFromIreland in https://github.com/python/python-docs-theme/pull/253 +* Pull Brazilian Portuguese, Simplified Chinese, Traditional Chinese translations from `Transifex `_ in https://github.com/python/python-docs-theme/pull/253 `2025.5 `_ --------------------------------------------------------------------------- From f3befdcff557055565c5b15f6c25d269d7437e60 Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 8 Sep 2025 10:41:10 +0300 Subject: [PATCH 3/6] Add Greek translation --- CHANGELOG.rst | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a223abe..b37ea5f 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,6 +5,7 @@ Changelog --------------------------------------------------------------------------- * Enable theme translation by @StanFromIreland in https://github.com/python/python-docs-theme/pull/246 +* Add Greek translation by @lysnikolaou https://github.com/python/python-docs-theme/pull/256 * Add Swedish translation by @yeager in https://github.com/python/python-docs-theme/pull/250 * Pull Brazilian Portuguese, Simplified Chinese, Traditional Chinese translations from `Transifex `_ in https://github.com/python/python-docs-theme/pull/253 From 58b476eb74cf860cf1a48de0e4633f33c48ad38e Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 8 Sep 2025 10:42:43 +0300 Subject: [PATCH 4/6] Update CHANGELOG --- CHANGELOG.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index b37ea5f..0b0d647 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,8 +4,8 @@ Changelog `2025.9 `_ --------------------------------------------------------------------------- -* Enable theme translation by @StanFromIreland in https://github.com/python/python-docs-theme/pull/246 -* Add Greek translation by @lysnikolaou https://github.com/python/python-docs-theme/pull/256 +* Enable theme translation and add Polish by @StanFromIreland in https://github.com/python/python-docs-theme/pull/246 +* Add Greek translation by @lysnikolaou in https://github.com/python/python-docs-theme/pull/256 * Add Swedish translation by @yeager in https://github.com/python/python-docs-theme/pull/250 * Pull Brazilian Portuguese, Simplified Chinese, Traditional Chinese translations from `Transifex `_ in https://github.com/python/python-docs-theme/pull/253 From 5ddd59255fa718443308ac0e99f5bf386901e5cd Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 8 Sep 2025 11:13:35 +0300 Subject: [PATCH 5/6] Update CHANGELOG --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 0b0d647..c40e7ef 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -5,7 +5,7 @@ Changelog --------------------------------------------------------------------------- * Enable theme translation and add Polish by @StanFromIreland in https://github.com/python/python-docs-theme/pull/246 -* Add Greek translation by @lysnikolaou in https://github.com/python/python-docs-theme/pull/256 +* Add Greek translation by @lysnikolaou and @skpanagiotis in https://github.com/python/python-docs-theme/pull/256 and https://github.com/python/python-docs-theme/pull/257 * Add Swedish translation by @yeager in https://github.com/python/python-docs-theme/pull/250 * Pull Brazilian Portuguese, Simplified Chinese, Traditional Chinese translations from `Transifex `_ in https://github.com/python/python-docs-theme/pull/253 From 5b2d564792912ca9d7605a02c15f9371498005ec Mon Sep 17 00:00:00 2001 From: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com> Date: Mon, 8 Sep 2025 19:05:32 +0300 Subject: [PATCH 6/6] Update CHANGELOG.rst Co-authored-by: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> --- CHANGELOG.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index c40e7ef..696bb88 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,7 +7,7 @@ Changelog * Enable theme translation and add Polish by @StanFromIreland in https://github.com/python/python-docs-theme/pull/246 * Add Greek translation by @lysnikolaou and @skpanagiotis in https://github.com/python/python-docs-theme/pull/256 and https://github.com/python/python-docs-theme/pull/257 * Add Swedish translation by @yeager in https://github.com/python/python-docs-theme/pull/250 -* Pull Brazilian Portuguese, Simplified Chinese, Traditional Chinese translations from `Transifex `_ in https://github.com/python/python-docs-theme/pull/253 +* Pull Brazilian Portuguese, Simplified Chinese, Traditional Chinese, Japanese, Turkish and Spanish translations from `Transifex `_ in https://github.com/python/python-docs-theme/pull/253 and https://github.com/python/python-docs-theme/pull/259 `2025.5 `_ ---------------------------------------------------------------------------