Skip to content

Commit

Permalink
change version number to 2.1-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Nov 17, 2023
1 parent 4ee748b commit 8274d49
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.6...3.14)
message(STATUS "CMake version: " ${CMAKE_VERSION})
project(TeNeS CXX)
set(TENES_VERSION 2.0.0)
set(TENES_VERSION 2.1-dev)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/en/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.0'
version = u'2.1'
# The full version, including alpha/beta/rc tags.
release = u'2.0.0'
release = u'2.1-dev'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions docs/sphinx/ja/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = u'2.0'
version = u'2.1'
# The full version, including alpha/beta/rc tags.
release = u'2.0.0'
release = u'2.1-dev'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion misc/make_archive.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ for lang in ja en; do
done
cd $ROOT_DIR

version=2.0.0
version=2.1-dev

git submodule update -i -r
git-archive-all \
Expand Down
2 changes: 1 addition & 1 deletion src/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
#ifndef TENES_SRC_VERSION_HPP_
#define TENES_SRC_VERSION_HPP_

#define TENES_VERSION "2.0.0"
#define TENES_VERSION "2.1-dev"

#endif // TENES_SRC_VERSION_HPP_
2 changes: 1 addition & 1 deletion tool/tenes_simple.py
Original file line number Diff line number Diff line change
Expand Up @@ -1349,7 +1349,7 @@ def tenes_simple(
help="Save onsite terms as site Hamiltonians",
)
parser.add_argument(
"-v", "--version", dest="version", action="version", version="2.0.0"
"-v", "--version", dest="version", action="version", version="2.1-dev"
)

args = parser.parse_args()
Expand Down
2 changes: 1 addition & 1 deletion tool/tenes_std.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="2.0.0"
"-v", "--version", dest="version", action="version", version="2.1-dev"
)

args = parser.parse_args()
Expand Down

0 comments on commit 8274d49

Please sign in to comment.