Skip to content
Merged

Dev #174

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[bumpversion]
current_version = 0.1.8
current_version = 0.1.9
commit = True
tag = True

[bumpversion:file:setup.py]
search = VERSION = "{current_version}"
replace = VERSION = "{new_version}"
[bumpversion:file:pyproject.toml]
search = version = "{current_version}"
replace = version = "{new_version}"

[bumpversion:file:qolmat/_version.py]
search = __version__ = "{current_version}"
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

0.1.8 (2024-08-29)
------------------
* Tutorials reproducibility improved with random_state parameters
* RPCA now accepts random_state parameters
* Dependency management improved with poetry

0.1.7 (2024-06-13)
------------------
* Little's test implemented in a new hole_characterization module
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
author = "Quantmetry"

# The full version, including alpha/beta/rc tags
version = "0.1.8"
version = "0.1.9"
release = version

# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[tool.poetry]
name = "qolmat"
version = "0.1.8"
version = "0.1.9"
description = "A Python library for optimal data imputation."
authors = [
"Julien ROUSSEL <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion qolmat/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.8"
__version__ = "0.1.9"
Loading