From dbd081ce42d41e9f2c8bae18b0619885784265f7 Mon Sep 17 00:00:00 2001 From: Yuichi Motoyama Date: Tue, 24 Oct 2023 16:18:21 +0900 Subject: [PATCH] 2.0-beta --- CMakeLists.txt | 2 +- docs/sphinx/en/conf.py | 4 ++-- docs/sphinx/ja/conf.py | 4 ++-- misc/make_archive.sh | 2 +- src/version.hpp | 2 +- tool/tenes_simple.py | 2 +- tool/tenes_std.py | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 20aea9e0..0ae15b4e 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.4-dev) +set(TENES_VERSION 2.0-beta) set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD_REQUIRED ON) diff --git a/docs/sphinx/en/conf.py b/docs/sphinx/en/conf.py index 079710ae..0f59fac3 100644 --- a/docs/sphinx/en/conf.py +++ b/docs/sphinx/en/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = u'1.4' +version = u'2.0' # The full version, including alpha/beta/rc tags. -release = u'1.4-dev' +release = u'2.0-beta' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/sphinx/ja/conf.py b/docs/sphinx/ja/conf.py index 3874e2e1..096b23a1 100644 --- a/docs/sphinx/ja/conf.py +++ b/docs/sphinx/ja/conf.py @@ -55,9 +55,9 @@ # built documents. # # The short X.Y version. -version = u'1.4' +version = u'2.0' # The full version, including alpha/beta/rc tags. -release = u'1.4-dev' +release = u'2.0-beta' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/misc/make_archive.sh b/misc/make_archive.sh index 5aaeeed1..e5fed2df 100644 --- a/misc/make_archive.sh +++ b/misc/make_archive.sh @@ -27,7 +27,7 @@ for lang in ja en; do done cd $ROOT_DIR -version=1.4-dev +version=2.0-beta git submodule update -i -r git-archive-all \ diff --git a/src/version.hpp b/src/version.hpp index 1eee8a13..740b7342 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.4-dev" +#define TENES_VERSION "2.0-dev" #endif // TENES_SRC_VERSION_HPP_ diff --git a/tool/tenes_simple.py b/tool/tenes_simple.py index d704e8b8..7ac7337b 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.4-dev" + "-v", "--version", dest="version", action="version", version="2.0-beta" ) args = parser.parse_args() diff --git a/tool/tenes_std.py b/tool/tenes_std.py index 16eb9ba6..75996f04 100644 --- a/tool/tenes_std.py +++ b/tool/tenes_std.py @@ -1133,7 +1133,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.4-dev" + "-v", "--version", dest="version", action="version", version="2.0-beta" ) args = parser.parse_args()