Skip to content

Commit 7df0c2d

Browse files
authored
prepare for v1.4.2 (#106)
1 parent 9bacb1d commit 7df0c2d

5 files changed

Lines changed: 8 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
# Changelog
22

3-
## Development
3+
## Version 1.4.2 (Nov 10, 2023)
44

55
Changes:
66
* Fix a bug serialising initial population set filename ([#104](https://github.com/xcsf-dev/xcsf/pull/104))
7+
* Add tests ([#105](https://github.com/xcsf-dev/xcsf/pull/105))
78

89
## Version 1.4.1 (Nov 3, 2023)
910

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.1
4-
doi: 10.5281/zenodo.10070213
5-
date-released: 2023-11-03
3+
version: 1.4.2
4+
doi:
5+
date-released: 2023-11-10
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 "[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.1")
24+
set(PROJECT_VERSION "1.4.2")
2525

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ def build_extension(self, ext):
8383

8484
setup(
8585
name="xcsf",
86-
version="1.4.1",
86+
version="1.4.2",
8787
license="GPL-3.0",
8888
maintainer="Richard Preen",
8989
maintainer_email="[email protected]",

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

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

0 commit comments

Comments
 (0)