From b78408fbc30f9f90b78ff65b5ae0d7f0122b8b15 Mon Sep 17 00:00:00 2001 From: Martin Trat Date: Wed, 17 Apr 2024 08:32:20 +0200 Subject: [PATCH] Bump version and add chnagelog file --- CHANGELOG.md | 25 +++++++++++++++++++++++++ fcbf/__init__.py | 2 +- pyproject.toml | 2 +- 3 files changed, 27 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..cb37a92 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,25 @@ +# Changelog + +All notable changes to this project will be documented in this file. + +The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), +and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## [Unreleased] + + +## [0.1.2] - 2024-04-17 +### Changed +- Migrated to newer dependency package versions. +- Dropping support for EOL Python versions. + +## [0.1.1] - 2022-09-21 +### Added +- Datasets are made accessible via package namespace. + + + +[unreleased]: https://github.com/m-martin-j/fcbf/compare/v0.1.2...HEAD + +[0.1.2]: https://github.com/m-martin-j/fcbf/compare/v0.1.1...v0.1.2 +[0.1.1]: https://github.com/m-martin-j/fcbf/releases/tag/v0.1.1 diff --git a/fcbf/__init__.py b/fcbf/__init__.py index e26ca3d..0d26874 100644 --- a/fcbf/__init__.py +++ b/fcbf/__init__.py @@ -2,7 +2,7 @@ __author__ = 'Martin Trat' __email__ = 'martin.trat@gmail.com' __license__ = 'MIT' -__version__ = '0.1.1' +__version__ = '0.1.2' from .fcbf import fcbf diff --git a/pyproject.toml b/pyproject.toml index 0d3ff51..1e1b23c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "fcbf" -version = "0.1.1" +version = "0.1.2" description = "Categorical feature selection based on information theoretical considerations" readme = "DESCRIPTION.md" authors = ["Martin Trat "]