Skip to content

Commit

Permalink
prepare for v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rpreen committed Nov 3, 2023
1 parent 4d1c349 commit fc4199e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## Version 1.4.0 (Nov 03, 2023)

Changes:
* Make `random_state` parameter sklearn compatible ([#97](https://github.com/xcsf-dev/xcsf/pull/97))

## Version 1.3.1 (Jul 28, 2023)

Changes:
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.3.1
doi: 10.5281/zenodo.8193688
date-released: 2023-07-28
version: 1.4.0
doi:
date-released: 2023-11-03
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 "[email protected]")
set(PROJECT_URL "https://github.com/xcsf-dev/xcsf")
set(PROJECT_DESCRIPTION "XCSF: Learning Classifier System")
set(PROJECT_VERSION "1.3.1")
set(PROJECT_VERSION "1.4.0")

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.3.1",
version="1.4.0",
license="GPL-3.0",
maintainer="Richard Preen",
maintainer_email="[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions xcsf/xcsf.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
#include <string.h>

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

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

0 comments on commit fc4199e

Please sign in to comment.