diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f1df43c5..4742584d7 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.11.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v1.11.0) (2018-10-24) + +### New features + * `onmt-convert-checkpoint` script to convert checkpoints from one data type to another (e.g. train with FP16 but export in FP32) * Additional output options for the `score` run type: * `with_token_level` to output the score of each token diff --git a/docs/conf.py b/docs/conf.py index 6de0e101d..cf40a9224 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,8 +11,8 @@ author = "OpenNMT" language = "en" -version = "1.10" # The short X.Y version. -release = "1.10.1" # The full version, including alpha/beta/rc tags. +version = "1.11" # The short X.Y version. +release = "1.11.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 25076f5d9..76b8f64b8 100644 --- a/opennmt/__init__.py +++ b/opennmt/__init__.py @@ -1,6 +1,6 @@ """OpenNMT module.""" -__version__ = "1.10.1" +__version__ = "1.11.0" from opennmt import decoders from opennmt import encoders diff --git a/setup.py b/setup.py index caae34dd3..759b3b9a3 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="OpenNMT-tf", - version="1.10.1", + version="1.11.0", license="MIT", description="Neural machine translation and sequence learning using TensorFlow", author="OpenNMT",