From aa6d6d8686d8aae3cd7bc1cb6450de415bc1e12d Mon Sep 17 00:00:00 2001 From: Yuichi Motoyama Date: Fri, 22 Mar 2024 15:23:45 +0900 Subject: [PATCH] change version number (v2.1-dev) --- CMakeLists.txt | 2 +- doc/en/conf.py | 4 ++-- doc/jp/conf.py | 4 ++-- src/common/version.h | 2 +- tool/dsqss/__init__.py | 2 +- tool/pyproject.toml | 2 +- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 1de3d04..aa8cd01 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR) project(DSQSS NONE) -set(DSQSS_VERSION 2.0.5) +set(DSQSS_VERSION 2.1-dev) message(STATUS "CMake version: " ${CMAKE_VERSION}) diff --git a/doc/en/conf.py b/doc/en/conf.py index a8470c4..b40d6c4 100644 --- a/doc/en/conf.py +++ b/doc/en/conf.py @@ -24,9 +24,9 @@ author = u'' # 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.5' +release = u'2.1-dev' # -- General configuration --------------------------------------------------- diff --git a/doc/jp/conf.py b/doc/jp/conf.py index dbeb512..387d397 100644 --- a/doc/jp/conf.py +++ b/doc/jp/conf.py @@ -24,9 +24,9 @@ author = u'' # 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.5' +release = u'2.1-dev' # -- General configuration --------------------------------------------------- diff --git a/src/common/version.h b/src/common/version.h index a7efe7a..192ffc8 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.1-dev" #endif // SRC_COMMON_VERSION_H_ diff --git a/tool/dsqss/__init__.py b/tool/dsqss/__init__.py index 34c5111..b7ca06c 100644 --- a/tool/dsqss/__init__.py +++ b/tool/dsqss/__init__.py @@ -1 +1 @@ -__version__ = "2.0.5" +__version__ = "2.1-dev" diff --git a/tool/pyproject.toml b/tool/pyproject.toml index aa0683f..e1ab783 100644 --- a/tool/pyproject.toml +++ b/tool/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dsqss" -version = "2.0.5" +version = "2.1-dev" description = "dsqss inputfile generator" authors = ["DSQSS developers "] license = "GPL-3.0-or-later"