diff --git a/CHANGELOG.md b/CHANGELOG.md index 2369c1ec9..85d346c11 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.9.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v1.9.0) (2018-10-05) + +### New features + * Mixed precision training of Transformer models * Command line option `--export_dir_base` to configure the destination directory of manually exported models diff --git a/docs/conf.py b/docs/conf.py index a46ad81cc..3aaa70194 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,8 +11,8 @@ author = "OpenNMT" language = "en" -version = "1.8" # The short X.Y version. -release = "1.8.1" # The full version, including alpha/beta/rc tags. +version = "1.9" # The short X.Y version. +release = "1.9.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 79d3ec9a4..d78a5d6a6 100644 --- a/opennmt/__init__.py +++ b/opennmt/__init__.py @@ -1,6 +1,6 @@ """OpenNMT module.""" -__version__ = "1.8.1" +__version__ = "1.9.0" from opennmt import decoders from opennmt import encoders diff --git a/setup.py b/setup.py index 8d07f7098..3d17f4598 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="OpenNMT-tf", - version="1.8.1", + version="1.9.0", license="MIT", description="Neural machine translation and sequence learning using TensorFlow", author="OpenNMT",