diff --git a/CHANGELOG.md b/CHANGELOG.md index ff618a1ca..9cf32e41e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,10 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov ### Fixes and improvements +## [1.14.1](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v1.14.1) (2018-11-28) + +### Fixes and improvements + * Fix inference error when using parallel inputs and the parameter `bucket_width` * Fix size mismatch error when decoding from multi-source models diff --git a/docs/conf.py b/docs/conf.py index 8f417350b..d0b0e6500 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -12,7 +12,7 @@ language = "en" version = "1.14" # The short X.Y version. -release = "1.14.0" # The full version, including alpha/beta/rc tags. +release = "1.14.1" # 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 9a7e77056..d6066fff3 100644 --- a/opennmt/__init__.py +++ b/opennmt/__init__.py @@ -1,6 +1,6 @@ """OpenNMT module.""" -__version__ = "1.14.0" +__version__ = "1.14.1" from opennmt import decoders from opennmt import encoders diff --git a/setup.py b/setup.py index 08456fab3..0ba1961a1 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="OpenNMT-tf", - version="1.14.0", + version="1.14.1", license="MIT", description="Neural machine translation and sequence learning using TensorFlow", author="OpenNMT",