summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémi Flamary <remi.flamary@gmail.com>2017-09-15 14:35:51 +0200
committerRémi Flamary <remi.flamary@gmail.com>2017-09-15 14:35:51 +0200
commit7fea2cd3e8ad29bf3fa442d7642bae124ee2bab0 (patch)
treec52cec3c38552f9f8c15361758aa9a80c30c3ef3
parentab121f134c22377209c818c1d9b576e0b3b9a9d3 (diff)
ipdate release
-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',