Skip to content

Commit d31223e

Browse files
Merge pull request #174 from scikit-learn-contrib/dev
* Tutorials reproducibility improved with random_state parameters * RPCA now accepts random_state parameters * Dependency management improved with poetry
2 parents 9045a8b + ac31408 commit d31223e

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.bumpversion.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[bumpversion]
2-
current_version = 0.1.8
2+
current_version = 0.1.9
33
commit = True
44
tag = True
55

6-
[bumpversion:file:setup.py]
7-
search = VERSION = "{current_version}"
8-
replace = VERSION = "{new_version}"
6+
[bumpversion:file:pyproject.toml]
7+
search = version = "{current_version}"
8+
replace = version = "{new_version}"
99

1010
[bumpversion:file:qolmat/_version.py]
1111
search = __version__ = "{current_version}"

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
History
33
=======
44

5+
0.1.8 (2024-08-29)
6+
------------------
7+
* Tutorials reproducibility improved with random_state parameters
8+
* RPCA now accepts random_state parameters
9+
* Dependency management improved with poetry
10+
511
0.1.7 (2024-06-13)
612
------------------
713
* Little's test implemented in a new hole_characterization module

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
author = "Quantmetry"
2828

2929
# The full version, including alpha/beta/rc tags
30-
version = "0.1.8"
30+
version = "0.1.9"
3131
release = version
3232

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[tool.poetry]
44
name = "qolmat"
5-
version = "0.1.8"
5+
version = "0.1.9"
66
description = "A Python library for optimal data imputation."
77
authors = [
88
"Julien ROUSSEL <[email protected]>",

qolmat/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.1.8"
1+
__version__ = "0.1.9"

0 commit comments

Comments
 (0)