summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--RELEASES.md17
-rw-r--r--ot/__init__.py2
2 files changed, 17 insertions, 2 deletions
diff --git a/RELEASES.md b/RELEASES.md
index 89cc29b..58712c8 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -1,9 +1,24 @@
# POT Releases
## 0.4 Community edition
+*15 Sep 2017*
+This release contains a lot of contribution from new contributors.
+
+
+#### Features
+
+* Automatic notebooks and doc update (PR #27)
* Add gromov Wasserstein solver and Gromov Barycenters (PR #23)
-* emd and emd2 can now return dual variables (PR #29)
+* emd and emd2 can now return dual variables and have max_iter (PR #29 and PR #25)
+* New domain adaptation classes compatible with scikit-learn (PR #22)
+* Proper tests with pytest on travis (PR #19)
+* PEP 8 tests (PR #13)
+
+#### Closed issues
+
+* emd convergence problem du to fixed max iterations (#24)
+* Semi supervised DA error (#26)
## 0.3.1
*11 Jul 2017*
diff --git a/ot/__init__.py b/ot/__init__.py
index c9bb8c0..a5df43d 100644
--- a/ot/__init__.py
+++ b/ot/__init__.py
@@ -29,7 +29,7 @@ from .gromov import gromov_wasserstein, gromov_wasserstein2
# utils functions
from .utils import dist, unif, tic, toc, toq
-__version__ = "0.4.0b"
+__version__ = "0.4.0"
__all__ = ["emd", "emd2", "sinkhorn", "sinkhorn2", "utils", 'datasets',
'bregman', 'lp', 'plot', 'tic', 'toc', 'toq',