diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c2123c..eb9bc79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ ## 0.1.1 + ### Breaking Changes - Store hard and soft losses as Python scalars instead of 0-dimensional NumPy arrays ([#3](https://github.com/Bitbol-Lab/DiffPaSS/issues/3)) @@ -19,7 +20,8 @@ - Fix `fit_bootstrap` appending empty lists ([#1](https://github.com/Bitbol-Lab/DiffPaSS/issues/1)) ->## 0.1.0 +## 0.1.0 + ### Breaking Changes - Change signature of `get_robust_pairs` ([ebb160c](https://github.com/Bitbol-Lab/DiffPaSS/commit/ebb160c512e6aed2cdb9865bdb9b2088a8e0ffd4)) @@ -28,6 +30,6 @@ - Add `remove_groups_not_in_both` function ([876d017](https://github.com/Bitbol-Lab/DiffPaSS/commit/876d01792a0206ee209478bd2ee5a4c122f2ab9d)) ->## 0.0.1 +## 0.0.1 - First DiffPaSS public release diff --git a/diffpass/__init__.py b/diffpass/__init__.py index 485f44a..d3ec452 100644 --- a/diffpass/__init__.py +++ b/diffpass/__init__.py @@ -1 +1 @@ -__version__ = "0.1.1" +__version__ = "0.2.0" diff --git a/settings.ini b/settings.ini index fca6b1a..56b39c2 100644 --- a/settings.ini +++ b/settings.ini @@ -1,7 +1,7 @@ [DEFAULT] repo = DiffPaSS lib_name = diffpass -version = 0.1.1 +version = 0.2.0 min_python = 3.7 license = apache2 black_formatting = True