Skip to content

Commit

Permalink
prepare for v1.4.7
Browse files Browse the repository at this point in the history
  • Loading branch information
rpreen committed Aug 19, 2024
1 parent 14d1908 commit 05e0f3a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
# Changelog

## Version 1.4.7 (Aug 19, 2024)

Changes:
* Fix saving and loading DGP graphs from persistent storage ([#151](https://github.com/xcsf-dev/xcsf/pull/151))
* Add Python tests ([#149](https://github.com/xcsf-dev/xcsf/pull/149))
* Drop support for Python 3.8; Add support for Python 3.13 ([#155](https://github.com/xcsf-dev/xcsf/pull/155))

## Version 1.4.6 (Jul 21, 2024)

Expand Down
6 changes: 3 additions & 3 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
cff-version: 1.2.0
title: XCSF
version: 1.4.6
doi: 10.5281/zenodo.12790240
date-released: 2024-07-21
version: 1.4.7
doi:
date-released: 2024-08-19
license: GPL-3.0
repository-code: https://github.com/xcsf-dev/xcsf
languages:
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ set(PROJECT_VENDOR "Richard Preen")
set(PROJECT_CONTACT "rpreen@gmail.com")
set(PROJECT_URL "https://github.com/xcsf-dev/xcsf")
set(PROJECT_DESCRIPTION "XCSF: Learning Classifier System")
set(PROJECT_VERSION "1.4.6")
set(PROJECT_VERSION "1.4.7")

set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 11)
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = xcsf
version = 1.4.6
version = 1.4.7
description = XCSF learning classifier system: rule-based evolutionary machine learning
long_description = file: README.md
long_description_content_type = text/markdown
Expand Down
2 changes: 1 addition & 1 deletion xcsf/xcsf.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@

static const int VERSION_MAJOR = 1; //!< XCSF major version number
static const int VERSION_MINOR = 4; //!< XCSF minor version number
static const int VERSION_BUILD = 6; //!< XCSF build version number
static const int VERSION_BUILD = 7; //!< XCSF build version number

/**
* @brief Classifier data structure.
Expand Down

0 comments on commit 05e0f3a

Please sign in to comment.