Skip to content

Commit

Permalink
release: v2.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu authored Dec 30, 2024
1 parent 09bf25e commit a769620
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 4 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -388,11 +388,17 @@ Nothing, initial release!

</details>

## [v2.5.0](https://github.com/eonu/sequentia/releases/tag/v2.5.0) - 2024-12-27
## [v2.6.0](https://github.com/eonu/sequentia/releases/tag/v2.6.0) - 2024-12-30

### Bug Fixes

- enable `joblib.Parallel` memory mapping ([#262](https://github.com/eonu/sequentia/issues/262))

### Documentation

- update copyright notice ([#255](https://github.com/eonu/sequentia/issues/255))
- fix `KNNRegressor.window` docstring typo ([#261](https://github.com/eonu/sequentia/issues/261))
- update `README.md` features ([#265](https://github.com/eonu/sequentia/issues/265))

### Features

Expand All @@ -402,6 +408,11 @@ Nothing, initial release!
- add `model_selection` sub-package for hyper-parameters ([#257](https://github.com/eonu/sequentia/issues/257))
- add model spec support to `HMMClassifier.__init__` ([#258](https://github.com/eonu/sequentia/issues/258))
- add `HMMClassifier.fit` multiprocessing ([#259](https://github.com/eonu/sequentia/issues/259))
- set `use_c=True` by default for `KNNClassifier`/`KNNRegressor` ([#263](https://github.com/eonu/sequentia/issues/263))

### Styling

- upgrade to `ruff` v0.8.4 and fix type hints ([#264](https://github.com/eonu/sequentia/issues/264))

## [v2.0.2](https://github.com/eonu/sequentia/releases/tag/v2.0.2) - 2024-04-13

Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
project = "sequentia"
copyright = "2019, Sequentia Developers" # noqa: A001
author = "Edwin Onuonga (eonu)"
release = "2.5.0"
release = "2.6.0"

# -- General configuration ---------------------------------------------------

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "sequentia"
version = "2.5.0"
version = "2.6.0"
license = "MIT"
authors = ["Edwin Onuonga <ed@eonu.net>"]
maintainers = ["Edwin Onuonga <ed@eonu.net>"]
Expand Down
2 changes: 1 addition & 1 deletion sequentia/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

__all__ = ["VERSION", "version_info"]

VERSION = "2.5.0"
VERSION = "2.6.0"


def version_info() -> str:
Expand Down

0 comments on commit a769620

Please sign in to comment.