From 6fa32b3af7185810e75c338b77adb955a8cbd0da Mon Sep 17 00:00:00 2001 From: necusjz Date: Tue, 14 May 2024 15:38:20 +0800 Subject: [PATCH] build: release v2.7.0 --- 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 6e4e8fc3..8ea6ed54 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +2.7.0 +++++++ +* Support example generation (#361) + 2.6.2 ++++++ * Refine documentation (#345, #349, #355, #356) diff --git a/docs/_config.yml b/docs/_config.yml index c80194e6..4c5224b7 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: v2.6.2 +version: v2.7.0 # Build settings theme: minima diff --git a/version.py b/version.py index 3ccac219..195d0300 100644 --- a/version.py +++ b/version.py @@ -1,5 +1,5 @@ -_MAJOR, _MINOR, _PATCH, _SUFFIX = ("2", "6", "2", "") +_MAJOR, _MINOR, _PATCH, _SUFFIX = ("2", "7", "0", "") # _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