diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b421a0e..c1c1f0cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ +## v0.2.0 (2023-05-21) +### Feature +* Add data splitting step ([#53](https://github.com/ErikBavenstrand/mleko/issues/53)) ([`a668b1a`](https://github.com/ErikBavenstrand/mleko/commit/a668b1a0cd61b6fa1970f401f8209accd40e083f)) + +### Documentation +* Removed duplicate row. ([`5d77131`](https://github.com/ErikBavenstrand/mleko/commit/5d77131341fb9d241fb179115f1dbd51c9962059)) +* Adding pre-commit check for conventional commits. ([`dd2076e`](https://github.com/ErikBavenstrand/mleko/commit/dd2076e38711368a94ba7b454ce830caf23ebf1d)) + ## v0.1.3 (2023-05-13) ### Fix * **cache:** :bug: Cache modules exposed in subpackage __init__. ([`fd65e9d`](https://github.com/ErikBavenstrand/mleko/commit/fd65e9df668a0003543a1fa2e3260f723a87285f)) diff --git a/pyproject.toml b/pyproject.toml index 2cf6ddd2..3369f964 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "mleko" -version = "0.1.3" +version = "0.2.0" description = "ML-Ekosystem" authors = ["Erik Båvenstrand "] license = "MIT" diff --git a/src/mleko/__init__.py b/src/mleko/__init__.py index f9fe342d..e613bc47 100644 --- a/src/mleko/__init__.py +++ b/src/mleko/__init__.py @@ -20,4 +20,4 @@ Each subpackage is designed to be modular and extensible, making it easy to customize and adapt the library to a wide range of model building processes and requirements. """ -__version__ = "0.1.3" +__version__ = "0.2.0"