Skip to content

Commit a94b825

Browse files
committed
bump v1.4.10
1 parent bae1e5f commit a94b825

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# Changelog
22

3+
## Version 1.4.10 (Sep 11, 2025)
4+
35
Changes:
46
* Restrict unordered bound hyperrectangle conditions within min/max during covering ([#215](https://github.com/xcsf-dev/xcsf/pull/215))
57

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cff-version: 1.2.0
22
title: XCSF
3-
version: 1.4.9
4-
doi: 10.5281/zenodo.17102209
3+
version: 1.4.10
4+
doi:
55
date-released: 2025-09-11
66
license: GPL-3.0
77
repository-code: https://github.com/xcsf-dev/xcsf

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ set(PROJECT_VENDOR "Richard Preen")
2121
set(PROJECT_CONTACT "rpreen@gmail.com")
2222
set(PROJECT_URL "https://github.com/xcsf-dev/xcsf")
2323
set(PROJECT_DESCRIPTION "XCSF: Learning Classifier System")
24-
set(PROJECT_VERSION "1.4.9")
24+
set(PROJECT_VERSION "1.4.10")
2525

2626
set(CMAKE_C_STANDARD 11)
2727
set(CMAKE_CXX_STANDARD 11)

pyproject.toml

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

55
[project]
66
name = "xcsf"
7-
version = "1.4.9"
7+
version = "1.4.10"
88
description = "XCSF learning classifier system: rule-based evolutionary machine learning"
99
readme = "README.md"
1010
requires-python = ">=3.9"

xcsf/xcsf.h

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

3838
static const int VERSION_MAJOR = 1; //!< XCSF major version number
3939
static const int VERSION_MINOR = 4; //!< XCSF minor version number
40-
static const int VERSION_BUILD = 9; //!< XCSF build version number
40+
static const int VERSION_BUILD = 10; //!< XCSF build version number
4141

4242
/**
4343
* @brief Classifier data structure.

0 commit comments

Comments
 (0)