Skip to content

Commit

Permalink
prepare for v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rpreen committed Nov 3, 2023
1 parent fc4199e commit 563167b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Version 1.4.0 (Nov 03, 2023)
## Version 1.4.1 (Nov 3, 2023)

Changes:
* Make `random_state` parameter sklearn compatible ([#97](https://github.com/xcsf-dev/xcsf/pull/97))
Expand Down
2 changes: 1 addition & 1 deletion CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cff-version: 1.2.0
title: XCSF
version: 1.4.0
version: 1.4.1
doi:
date-released: 2023-11-03
license: GPL-3.0
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 "[email protected]")
set(PROJECT_URL "https://github.com/xcsf-dev/xcsf")
set(PROJECT_DESCRIPTION "XCSF: Learning Classifier System")
set(PROJECT_VERSION "1.4.0")
set(PROJECT_VERSION "1.4.1")

set(CMAKE_C_STANDARD 11)
set(CMAKE_CXX_STANDARD 11)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def build_extension(self, ext):

setup(
name="xcsf",
version="1.4.0",
version="1.4.1",
license="GPL-3.0",
maintainer="Richard Preen",
maintainer_email="[email protected]",
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 = 0; //!< XCSF build version number
static const int VERSION_BUILD = 1; //!< XCSF build version number

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

0 comments on commit 563167b

Please sign in to comment.