From bb7563729a69b60f7bc891d495e69829c6e35794 Mon Sep 17 00:00:00 2001 From: Yuichi Motoyama Date: Fri, 4 Oct 2024 14:48:42 +0900 Subject: [PATCH] bump up version number to 2.0.6 --- CMakeLists.txt | 2 +- doc/en/conf.py | 2 +- doc/jp/conf.py | 2 +- src/common/version.h | 2 +- tool/dsqss/__init__.py | 2 +- tool/pyproject.toml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b189d16..797fca2 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 2.8.12...3.20.2 FATAL_ERROR) project(DSQSS NONE) -set(DSQSS_VERSION 2.0.5) +set(DSQSS_VERSION 2.0.6) message(STATUS "CMake version: " ${CMAKE_VERSION}) diff --git a/doc/en/conf.py b/doc/en/conf.py index a8470c4..9ad140b 100644 --- a/doc/en/conf.py +++ b/doc/en/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = u'2.0' # The full version, including alpha/beta/rc tags -release = u'2.0.5' +release = u'2.0.6' # -- General configuration --------------------------------------------------- diff --git a/doc/jp/conf.py b/doc/jp/conf.py index dbeb512..7a40c86 100644 --- a/doc/jp/conf.py +++ b/doc/jp/conf.py @@ -26,7 +26,7 @@ # The short X.Y version version = u'2.0' # The full version, including alpha/beta/rc tags -release = u'2.0.5' +release = u'2.0.6' # -- General configuration --------------------------------------------------- diff --git a/src/common/version.h b/src/common/version.h index a7efe7a..eb49e6a 100644 --- a/src/common/version.h +++ b/src/common/version.h @@ -17,6 +17,6 @@ #ifndef SRC_COMMON_VERSION_H_ #define SRC_COMMON_VERSION_H_ -#define DSQSS_VERSION "2.0.5" +#define DSQSS_VERSION "2.0.6" #endif // SRC_COMMON_VERSION_H_ diff --git a/tool/dsqss/__init__.py b/tool/dsqss/__init__.py index 34c5111..ff6ef86 100644 --- a/tool/dsqss/__init__.py +++ b/tool/dsqss/__init__.py @@ -1 +1 @@ -__version__ = "2.0.5" +__version__ = "2.0.6" diff --git a/tool/pyproject.toml b/tool/pyproject.toml index aa0683f..592b728 100644 --- a/tool/pyproject.toml +++ b/tool/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dsqss" -version = "2.0.5" +version = "2.0.6" description = "dsqss inputfile generator" authors = ["DSQSS developers "] license = "GPL-3.0-or-later"