File tree Expand file tree Collapse file tree 5 files changed +11
-8
lines changed
Expand file tree Collapse file tree 5 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## Version 1.4.8 (Aug 26, 2025)
4+
35Changes:
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 ) )
Original file line number Diff line number Diff line change 11cff-version : 1.2.0
22title : 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
66license : GPL-3.0
77repository-code : https://github.com/xcsf-dev/xcsf
88languages :
Original file line number Diff line number Diff line change 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")
2121set (PROJECT_CONTACT
"[email protected] " )
2222set (PROJECT_URL "https://github.com/xcsf-dev/xcsf" )
2323set (PROJECT_DESCRIPTION "XCSF: Learning Classifier System" )
24- set (PROJECT_VERSION "1.4.7 " )
24+ set (PROJECT_VERSION "1.4.8 " )
2525
2626set (CMAKE_C_STANDARD 11)
2727set (CMAKE_CXX_STANDARD 11)
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " xcsf"
7- version = " 1.4.7 "
7+ version = " 1.4.8 "
88description = " XCSF learning classifier system: rule-based evolutionary machine learning"
99readme = " README.md"
1010requires-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" ,
Original file line number Diff line number Diff line change 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
3737
3838static const int VERSION_MAJOR = 1 ; //!< XCSF major version number
3939static 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.
You can’t perform that action at this time.
0 commit comments