Skip to content

Commit

Permalink
bump version and changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
eonu committed Dec 27, 2022
1 parent 738c921 commit ed42776
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
## [1.0.0](https://github.com/eonu/sequentia/releases/tag/v1.0.0)

#### Major changes

- Fix `CategoricalHMM` and `GaussianMixtureHMM` parameter defaults for `params`/`init_params` being modified. ([#231](https://github.com/eonu/sequentia/issues/231))
- Fix `CategoricalHMM` and `GaussianMixtureHMM` `unfreeze()` calling `super().freeze()` instead of `super().unfreeze()`. ([#231](https://github.com/eonu/sequentia/issues/231))
- Fix serialization/deserialization for `_KNNMixin` when `weighting=None`. ([#231](https://github.com/eonu/sequentia/issues/231))
- Add unit tests. ([#231](https://github.com/eonu/sequentia/issues/231))

#### Minor changes

- Change `load_digits` `numbers` parameter name to `digits`. ([#231](https://github.com/eonu/sequentia/issues/231))
- Change `SequentialDataset` properties to not return copies of arrays. ([#231](https://github.com/eonu/sequentia/issues/231))
- Remove `SequentialDataset.__eq__`. ([#231](https://github.com/eonu/sequentia/issues/231))
- Change `HMMClassifier` `prior` default to `None`. ([#231](https://github.com/eonu/sequentia/issues/231))

## [1.0.0a2](https://github.com/eonu/sequentia/releases/tag/v1.0.0a2)

#### Minor changes
Expand Down
2 changes: 1 addition & 1 deletion lib/sequentia/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from .utils import *

__name__ = "sequentia"
__version__ = "1.0.0a2"
__version__ = "1.0.0"
__author__ = "Edwin Onuonga"
__email__ = "[email protected]"
__copyright__ = f"2019-2023, {__author__}"

0 comments on commit ed42776

Please sign in to comment.