Skip to content

Commit

Permalink
chore: 🔖 bump version number and update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas Bury committed Sep 22, 2023
1 parent 14b33af commit 2a909bc
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 14 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changes
# 2.1.3
- [BUG] fix the hardcoded threshold in collinearity elimination, closes #33
# 2.1.2
- [BUG] fix a bug in computing the association matrix when a single column of a specific dtype is passed in the sub_matrix (nom-nom, num-num) calculators.
# 2.1.1
Expand Down
21 changes: 9 additions & 12 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -1,22 +1,19 @@
cff-version: 1.2.0
abstract: >-
All relevant feature selection means trying to find all features carrying information usable for prediction,
rather than finding a possibly compact subset of features on which some particular model has a minimal error.
This might include redundant predictors.
All relevant feature selection means trying to find all features carrying information usable for prediction, rather than finding a possibly compact subset of features on which some particular model has a minimal error. This might include redundant predictors.
title: All relevant feature selection
message: >-
If you use this software, please cite it using the
metadata from this file.
If you use this software, please cite it using the metadata from this file.
type: software
authors:
- given-names: Thomas
family-names: Bury
orcid: 'https://orcid.org/0000-0003-1421-4184'
- given-names: Thomas
family-names: Bury
orcid: 'https://orcid.org/0000-0003-1421-4184'
keywords:
- "Feature Selection"
- "All Relevant Feature Selection"
- "Machine Learning"
- "Feature Selection"
- "All Relevant Feature Selection"
- "Machine Learning"
license: MIT License
url: 'https://github.com/ThomasBury/arfs'
version: 2.1.2
version: 2.1.3
date-released: 2021-12-18
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
author = "Thomas Bury"

# The full version, including alpha/beta/rc tags
release = "2.1.2"
release = "2.1.3"

# If extensions (or modules to document with autodoc) are in another
# directory, add these directories to sys.path here. If the directory is
Expand Down
2 changes: 1 addition & 1 deletion src/arfs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
"""init module, providing information about the arfs package
"""

__version__ = "2.1.2"
__version__ = "2.1.3"

0 comments on commit 2a909bc

Please sign in to comment.