From bb0d64d13032dd2423a70cbf5eb872b10b4e9016 Mon Sep 17 00:00:00 2001 From: Yuichi Motoyama Date: Wed, 7 Jun 2023 23:51:51 +0900 Subject: [PATCH] change version number to v1.3.2 --- CMakeLists.txt | 2 +- docs/sphinx/en/about/info.rst | 1 + docs/sphinx/en/conf.py | 2 +- docs/sphinx/ja/about/info.rst | 1 + docs/sphinx/ja/conf.py | 2 +- src/version.hpp | 2 +- tool/tenes_simple.py | 2 +- tool/tenes_std.py | 2 +- 8 files changed, 8 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index fe655bbd..1896b9eb 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.6...3.14) message(STATUS "CMake version: " ${CMAKE_VERSION}) project(TeNeS CXX) -set(TENES_VERSION 1.3.2-dev) +set(TENES_VERSION 1.3.2) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/docs/sphinx/en/about/info.rst b/docs/sphinx/en/about/info.rst index 9f0b046c..bc57104c 100644 --- a/docs/sphinx/en/about/info.rst +++ b/docs/sphinx/en/about/info.rst @@ -19,6 +19,7 @@ TeNeS is developed by the following members. Version information ====================== +- ver. 1.3.2: 2023-06-08. - ver. 1.3.1: 2022-10-21. - ver. 1.3.0: 2022-10-20. - ver. 1.2.0: 2021-12-13. diff --git a/docs/sphinx/en/conf.py b/docs/sphinx/en/conf.py index c3712ecd..fedd4822 100644 --- a/docs/sphinx/en/conf.py +++ b/docs/sphinx/en/conf.py @@ -57,7 +57,7 @@ # The short X.Y version. version = u'1.3' # The full version, including alpha/beta/rc tags. -release = u'1.3.2-dev' +release = u'1.3.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/sphinx/ja/about/info.rst b/docs/sphinx/ja/about/info.rst index bfb687f1..473f9ca8 100644 --- a/docs/sphinx/ja/about/info.rst +++ b/docs/sphinx/ja/about/info.rst @@ -19,6 +19,7 @@ TeNeS は以下のメンバーで開発しています。 バージョン履歴 ================== +- ver. 1.3.2: 2023-06-08 にリリース。 - ver. 1.3.1: 2022-10-21 にリリース。 - ver. 1.3.0: 2022-10-20 にリリース。 - ver. 1.2.0: 2021-12-13 にリリース。 diff --git a/docs/sphinx/ja/conf.py b/docs/sphinx/ja/conf.py index cab5a092..7c497fa6 100644 --- a/docs/sphinx/ja/conf.py +++ b/docs/sphinx/ja/conf.py @@ -57,7 +57,7 @@ # The short X.Y version. version = u'1.3' # The full version, including alpha/beta/rc tags. -release = u'1.3.2-dev' +release = u'1.3.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/src/version.hpp b/src/version.hpp index a88118e4..fa41461d 100644 --- a/src/version.hpp +++ b/src/version.hpp @@ -17,6 +17,6 @@ #ifndef TENES_SRC_VERSION_HPP_ #define TENES_SRC_VERSION_HPP_ -#define TENES_VERSION "1.3.2-dev" +#define TENES_VERSION "1.3.2" #endif // TENES_SRC_VERSION_HPP_ diff --git a/tool/tenes_simple.py b/tool/tenes_simple.py index 960aa8ee..0b3c6474 100644 --- a/tool/tenes_simple.py +++ b/tool/tenes_simple.py @@ -1349,7 +1349,7 @@ def tenes_simple( help="Save onsite terms as site Hamiltonians", ) parser.add_argument( - "-v", "--version", dest="version", action="version", version="1.3.2-dev" + "-v", "--version", dest="version", action="version", version="1.3.2" ) args = parser.parse_args() diff --git a/tool/tenes_std.py b/tool/tenes_std.py index 01b2e647..1c4beb7b 100644 --- a/tool/tenes_std.py +++ b/tool/tenes_std.py @@ -993,7 +993,7 @@ def to_toml(self, f: TextIO): "-o", "--output", dest="output", default="input.toml", help="Output TOML file" ) parser.add_argument( - "-v", "--version", dest="version", action="version", version="1.3.2-dev" + "-v", "--version", dest="version", action="version", version="1.3.2" ) args = parser.parse_args()