From 6ebb68bd598286948d2d9428b3ed36994924670c Mon Sep 17 00:00:00 2001 From: Sarah Alnegheimish Date: Mon, 25 Nov 2024 10:21:40 -0500 Subject: [PATCH 1/3] =?UTF-8?q?Bump=20version:=200.2.1=20=E2=86=92=200.2.2?= =?UTF-8?q?.dev0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mlstars/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mlstars/__init__.py b/mlstars/__init__.py index ca51bfa..02e6851 100644 --- a/mlstars/__init__.py +++ b/mlstars/__init__.py @@ -2,7 +2,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com' -__version__ = '0.2.1' +__version__ = '0.2.2.dev0' import os diff --git a/setup.cfg b/setup.cfg index 28d1007..c553794 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.1 +current_version = 0.2.2.dev0 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index bae2db8..15aba34 100644 --- a/setup.py +++ b/setup.py @@ -118,6 +118,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sintel-dev/ml-stars', - version='0.2.1', + version='0.2.2.dev0', zip_safe=False, ) From 394cc62e0cc3a31d635c9c790e1b930ac0698698 Mon Sep 17 00:00:00 2001 From: Sarah Alnegheimish Date: Tue, 3 Dec 2024 13:07:01 -0500 Subject: [PATCH 2/3] =?UTF-8?q?Bump=20version:=200.2.2.dev0=20=E2=86=92=20?= =?UTF-8?q?0.2.2.dev1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mlstars/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mlstars/__init__.py b/mlstars/__init__.py index 02e6851..0ac4f31 100644 --- a/mlstars/__init__.py +++ b/mlstars/__init__.py @@ -2,7 +2,7 @@ __author__ = 'MIT Data To AI Lab' __email__ = 'dailabmit@gmail.com' -__version__ = '0.2.2.dev0' +__version__ = '0.2.2.dev1' import os diff --git a/setup.cfg b/setup.cfg index c553794..db16b83 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.2.dev0 +current_version = 0.2.2.dev1 commit = True tag = True parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\.(?P[a-z]+)(?P\d+))? diff --git a/setup.py b/setup.py index 15aba34..fe31856 100644 --- a/setup.py +++ b/setup.py @@ -118,6 +118,6 @@ test_suite='tests', tests_require=tests_require, url='https://github.com/sintel-dev/ml-stars', - version='0.2.2.dev0', + version='0.2.2.dev1', zip_safe=False, ) From da7248920fef214f36222d316663c0b1ad363c9d Mon Sep 17 00:00:00 2001 From: Sarah Alnegheimish Date: Tue, 3 Dec 2024 13:27:21 -0500 Subject: [PATCH 3/3] add release notes --- HISTORY.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 738a3d4..b284cd2 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,9 @@ # History +## 0.2.2 – 2024-12-03 + +* ``SimpleImputer`` primitive update [Issue#17](https://github.com/sintel-dev/ml-stars/issues/17) - by @sarahmish + ## 0.2.1 – 2024-11-25 * Adapter for MinMaxScaler [Issue #16](https://github.com/sintel-dev/ml-stars/issues/16) - by @sarahmish