Skip to content

Commit fb9d9da

Browse files
committed
bump version v1.4.9
1 parent 46e25fe commit fb9d9da

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

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.9 (Sep 11, 2025)
4+
35
Changes:
46
* Fix constant prediction early stopping rollback ([#214](https://github.com/xcsf-dev/xcsf/pull/214))
57

CITATION.cff

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
cff-version: 1.2.0
22
title: XCSF
3-
version: 1.4.8
4-
doi: 10.5281/zenodo.16953714
5-
date-released: 2025-08-26
3+
version: 1.4.9
4+
doi:
5+
date-released: 2025-09-11
66
license: GPL-3.0
77
repository-code: https://github.com/xcsf-dev/xcsf
88
languages:

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.8")
24+
set(PROJECT_VERSION "1.4.9")
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.8"
7+
version = "1.4.9"
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 = 8; //!< XCSF build version number
40+
static const int VERSION_BUILD = 9; //!< XCSF build version number
4141

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

0 commit comments

Comments
 (0)