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 3, 2022
1 parent c50c1c8 commit da16c2c
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 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.1 (Sep 3, 2022)

Changes:
* Fix hyperrectangle_ubr json population seeding import/export asymmetry.

## Version 1.2.0 (Sep 3, 2022)

Changes:
Expand Down
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cff-version: 1.2.0
title: XCSF
version: 1.2.0
doi: 10.5281/zenodo.7046695
version: 1.2.1
doi:
date-released: 2022-09-03
license: GPL-3.0
repository-code: https://github.com/rpreen/xcsf
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.0")
set(PROJECT_VERSION "1.2.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 @@ -80,7 +80,7 @@ def build_extension(self, ext):

setup(
name="xcsf",
version="1.2.0",
version="1.2.1",
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 = 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 da16c2c

Please sign in to comment.