From eee987a1eba0a08eead655f9a586afba90492c2a Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Fri, 8 Feb 2019 17:48:37 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 6 ++++++ docs/conf.py | 4 ++-- opennmt/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a69245889..13b71f0d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,12 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov ### New features +### Fixes and improvements + +## [1.19.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v1.19.0) (2019-02-08) + +### New features + * Experimental [Horovod](https://github.com/uber/horovod) support * Experimental `opennmt.v2` namespace that will expose modules compatible with TensorFlow 2.0 * [`sacreBLEU`](https://github.com/mjpost/sacreBLEU) external evaluator (requires Python 3) diff --git a/docs/conf.py b/docs/conf.py index e7d5945b8..9cb8f2512 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,8 +11,8 @@ author = "OpenNMT" language = "en" -version = "1.18" # The short X.Y version. -release = "1.18.0" # The full version, including alpha/beta/rc tags. +version = "1.19" # The short X.Y version. +release = "1.19.0" # The full version, including alpha/beta/rc tags. source_suffix = ".rst" master_doc = "index" diff --git a/opennmt/__init__.py b/opennmt/__init__.py index 17286265f..d49158bbd 100644 --- a/opennmt/__init__.py +++ b/opennmt/__init__.py @@ -3,7 +3,7 @@ import tensorflow as tf -__version__ = "1.18.0" +__version__ = "1.19.0" if tf.__version__.startswith("2"): from opennmt.v2 import * # pylint: disable=wildcard-import diff --git a/setup.py b/setup.py index 0771904c7..6d57d1e63 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="OpenNMT-tf", - version="1.18.0", + version="1.19.0", license="MIT", description="Neural machine translation and sequence learning using TensorFlow", author="OpenNMT",