Skip to content

Commit 63b8534

Browse files
committed
prepare for v1.4.8
1 parent b0bffb8 commit 63b8534

File tree

5 files changed

+11
-8
lines changed

5 files changed

+11
-8
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.8 (Aug 26, 2025)
4+
35
Changes:
46
* Add checks for array contiguity ([#199](https://github.com/xcsf-dev/xcsf/pull/199))
57
* Add `clean` parameter to wipe existing population to `json_read` ([#202](https://github.com/xcsf-dev/xcsf/pull/202))

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.7
4-
doi: 10.5281/zenodo.13345085
5-
date-released: 2024-08-19
3+
version: 1.4.8
4+
doi:
5+
date-released: 2025-08-26
66
license: GPL-3.0
77
repository-code: https://github.com/xcsf-dev/xcsf
88
languages:

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (C) 2019--2024 Richard Preen <[email protected]>
2+
# Copyright (C) 2019--2025 Richard Preen <[email protected]>
33
#
44
# This program is free software: you can redistribute it and/or modify it under
55
# the terms of the GNU General Public License as published by the Free Software
@@ -21,7 +21,7 @@ set(PROJECT_VENDOR "Richard Preen")
2121
set(PROJECT_CONTACT "[email protected]")
2222
set(PROJECT_URL "https://github.com/xcsf-dev/xcsf")
2323
set(PROJECT_DESCRIPTION "XCSF: Learning Classifier System")
24-
set(PROJECT_VERSION "1.4.7")
24+
set(PROJECT_VERSION "1.4.8")
2525

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

pyproject.toml

Lines changed: 2 additions & 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.7"
7+
version = "1.4.8"
88
description = "XCSF learning classifier system: rule-based evolutionary machine learning"
99
readme = "README.md"
1010
requires-python = ">=3.9"
@@ -39,6 +39,7 @@ classifiers = [
3939
"Programming Language :: Python :: 3.11",
4040
"Programming Language :: Python :: 3.12",
4141
"Programming Language :: Python :: 3.13",
42+
"Programming Language :: Python :: 3.14",
4243
"Topic :: Scientific/Engineering",
4344
"Topic :: Scientific/Engineering :: Artificial Intelligence",
4445
"Operating System :: POSIX :: Linux",

xcsf/xcsf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @file xcsf.h
1818
* @author Richard Preen <[email protected]>
1919
* @copyright The Authors.
20-
* @date 2019--2024.
20+
* @date 2019--2025.
2121
* @brief XCSF data structures.
2222
*/
2323

@@ -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 = 7; //!< XCSF build version number
40+
static const int VERSION_BUILD = 8; //!< XCSF build version number
4141

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

0 commit comments

Comments
 (0)