Skip to content

Commit e2b95be

Browse files
committed
Bump version 2.3.0; Note that 2.2.1 will not be a separate release
1 parent 3b74f7c commit e2b95be

10 files changed

Lines changed: 11 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to `libcasm-configuration` will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [2.2.1] - 2026-02-26
8+
## [2.3.0] - 2026-02-26
99

1010
### Changed
1111

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.20)
22
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version")
33

4-
project(CASMcode_configuration VERSION 2.2.1 LANGUAGES CXX)
4+
project(CASMcode_configuration VERSION 2.3.0 LANGUAGES CXX)
55

66
# set CMAKE_INSTALL_X variables
77
include(GNUInstallDirs)

CMakeLists.txt.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.20)
22
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version")
33

4-
project(CASMcode_configuration VERSION 2.2.1 LANGUAGES CXX)
4+
project(CASMcode_configuration VERSION 2.3.0 LANGUAGES CXX)
55

66
# set CMAKE_INSTALL_X variables
77
include(GNUInstallDirs)

doc/doxygen_config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "CASM_configuration"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2.2.1
41+
PROJECT_NUMBER = 2.3.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ build-backend = "setuptools.build_meta"
1414

1515
[project]
1616
name = "libcasm-configuration"
17-
version = "2.2.1"
17+
version = "2.3.0"
1818
authors = [
1919
{ name="CASM developers", email="casm-developers@lists.engr.ucsb.edu" },
2020
]

python/doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
# -- package specific configuration --
44
project = "libcasm-configuration"
5-
version = "2.2" # The short X.Y version.
6-
release = "2.2.1" # The full version, including alpha/beta/rc tags.
5+
version = "2.3" # The short X.Y version.
6+
release = "2.3.0" # The full version, including alpha/beta/rc tags.
77
project_desc = "CASM configuration comparison and enumeration"
88
logo_text = "libcasm-configuration"
99
github_url = "https://github.com/prisms-center/CASMcode_configuration/"

python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import os
22

3-
__version__ = "2.2.1"
3+
__version__ = "2.3.0"
44

55
# Available at setup time due to pyproject.toml
66
from pybind11.setup_helpers import Pybind11Extension, build_ext

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setup(
44
name="libcasm-configuration",
5-
version="2.2.1",
5+
version="2.3.0",
66
packages=[
77
"libcasm",
88
"libcasm.clusterography",

tests/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.20)
22
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version")
33

4-
project(CASMcode_configuration_tests VERSION 2.2.1 LANGUAGES CXX)
4+
project(CASMcode_configuration_tests VERSION 2.3.0 LANGUAGES CXX)
55

66

77
# set CMAKE_INSTALL_X variables

tests/CMakeLists.txt.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.20)
22
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15" CACHE STRING "Minimum OS X deployment version")
33

4-
project(CASMcode_configuration_tests VERSION 2.2.1 LANGUAGES CXX)
4+
project(CASMcode_configuration_tests VERSION 2.3.0 LANGUAGES CXX)
55

66

77
# set CMAKE_INSTALL_X variables

0 commit comments

Comments
 (0)