Skip to content

Commit

Permalink
change version number to v1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
yomichi committed Jun 7, 2023
1 parent 342bbc4 commit bb0d64d
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 6 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 1.3.2-dev)
set(TENES_VERSION 1.3.2)

set(CMAKE_CXX_STANDARD 11)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
1 change: 1 addition & 0 deletions docs/sphinx/en/about/info.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/en/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
1 change: 1 addition & 0 deletions docs/sphinx/ja/about/info.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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 にリリース。
Expand Down
2 changes: 1 addition & 1 deletion docs/sphinx/ja/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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 "1.3.2-dev"
#define TENES_VERSION "1.3.2"

#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="1.3.2-dev"
"-v", "--version", dest="version", action="version", version="1.3.2"
)

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 @@ -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()
Expand Down

0 comments on commit bb0d64d

Please sign in to comment.