Skip to content

Commit

Permalink
🆕 increment version number
Browse files Browse the repository at this point in the history
  • Loading branch information
rpreen committed Sep 23, 2022
1 parent 0567659 commit 86954f1
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 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.2.3 (Sep 23, 2022)

Changes:
* Fix numpy subnormal warning.


## Version 1.2.2 (Sep 20, 2022)

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.2.2
doi: 10.5281/zenodo.7097215
date-released: 2022-09-20
version: 1.2.3
doi:
date-released: 2022-09-23
license: GPL-3.0
repository-code: https://github.com/rpreen/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/rpreen/xcsf")
set(PROJECT_DESCRIPTION "XCSF: Learning Classifier System")
set(PROJECT_VERSION "1.2.2")
set(PROJECT_VERSION "1.2.3")

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 @@ -80,7 +80,7 @@ def build_extension(self, ext):

setup(
name="xcsf",
version="1.2.2",
version="1.2.3",
license="GPL-3.0",
maintainer="Richard Preen",
maintainer_email="rpreen@gmail.com",
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 = 2; //!< XCSF minor version number
static const int VERSION_BUILD = 2; //!< XCSF build version number
static const int VERSION_BUILD = 3; //!< XCSF build version number

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

0 comments on commit 86954f1

Please sign in to comment.