From 939fe51255f338788bb4471331a4fbeb90633468 Mon Sep 17 00:00:00 2001 From: Kazuya Takei Date: Thu, 16 May 2024 00:12:10 +0900 Subject: [PATCH] release: Version 0.4.0 closes: #1 --- .age.toml | 2 +- .github/release-body.md | 2 +- CHANGES.rst | 15 +++++---------- doc/changelogs/0.3.1.rst | 14 ++++++++++++++ pyproject.toml | 2 +- src/atsphinx/mini18n/__init__.py | 2 +- 6 files changed, 23 insertions(+), 14 deletions(-) create mode 100644 doc/changelogs/0.3.1.rst diff --git a/.age.toml b/.age.toml index 6dd9cbe..49868f6 100644 --- a/.age.toml +++ b/.age.toml @@ -1,4 +1,4 @@ -current_version = "0.3.1" +current_version = "0.4.0" [[files]] path = "pyproject.toml" diff --git a/.github/release-body.md b/.github/release-body.md index 28e6564..8da5aff 100644 --- a/.github/release-body.md +++ b/.github/release-body.md @@ -1,3 +1,3 @@ Release update -- Changelog is https://github.com/atsphinx/mini18n/blob/v0.3.1/CHANGES.rst +- Changelog is https://github.com/atsphinx/mini18n/blob/v0.4.0/CHANGES.rst diff --git a/CHANGES.rst b/CHANGES.rst index 86f6105..8be46e1 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,14 +1,9 @@ -v0.3.1 +v0.4.0 ====== -:Date: 2024-05-06 (JST) +:Date: 2024-05-16 (JST) -Fixes ------ +Features +-------- -* It registers ``mini18n-`` builders lazy for third-party builders. - -Others ------- - -* Fix typo +* Widget on document remembers selected language when users select it. diff --git a/doc/changelogs/0.3.1.rst b/doc/changelogs/0.3.1.rst new file mode 100644 index 0000000..86f6105 --- /dev/null +++ b/doc/changelogs/0.3.1.rst @@ -0,0 +1,14 @@ +v0.3.1 +====== + +:Date: 2024-05-06 (JST) + +Fixes +----- + +* It registers ``mini18n-`` builders lazy for third-party builders. + +Others +------ + +* Fix typo diff --git a/pyproject.toml b/pyproject.toml index 4b84380..8b4b17f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "atsphinx-mini18n" -version = "0.3.1" +version = "0.4.0" description = "Sphinx builder for i18n site on single deployment" authors = [{name = "Kazuya Takei", email = "myself@attakei.net"}] license = "Apache-2.0" diff --git a/src/atsphinx/mini18n/__init__.py b/src/atsphinx/mini18n/__init__.py index fbe7e14..bd575ff 100644 --- a/src/atsphinx/mini18n/__init__.py +++ b/src/atsphinx/mini18n/__init__.py @@ -9,7 +9,7 @@ from sphinx.builders.dummy import DummyBuilder from sphinx.config import Config -__version__ = "0.3.1" +__version__ = "0.4.0" package_root = Path(__file__).parent.resolve()