diff --git a/CHANGELOG.md b/CHANGELOG.md index 32d21e7fd..9bc25bc3a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,12 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov ### New features +### Fixes and improvements + +## [2.6.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.6.0) (2020-01-28) + +### New features + * Multiple training files can be configured in `train_features_file`/`train_labels_file`, and `train_files_weights` optionally assign a weight to each file (see *Data* section in the documentation) * Support exporting compatible models to CTranslate2 format (see `export_format` option) * `moving_average_decay` training parameter to enable exponential moving average of the model variables diff --git a/docs/conf.py b/docs/conf.py index d0b9370a0..b98b02e88 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -10,8 +10,8 @@ author = "OpenNMT" language = "en" -version = "2.5" # The short X.Y version. -release = "2.5.1" # The full version, including alpha/beta/rc tags. +version = "2.6" # The short X.Y version. +release = "2.6.0" # The full version, including alpha/beta/rc tags. extensions = [ "recommonmark", diff --git a/opennmt/__init__.py b/opennmt/__init__.py index 6bdcae442..32ba518f1 100644 --- a/opennmt/__init__.py +++ b/opennmt/__init__.py @@ -1,6 +1,6 @@ """OpenNMT module.""" -__version__ = "2.5.1" +__version__ = "2.6.0" from opennmt.config import convert_to_v2_config from opennmt.config import load_config diff --git a/setup.py b/setup.py index f78593d6e..cd3f97b67 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="OpenNMT-tf", - version="2.5.1", + version="2.6.0", license="MIT", description="Neural machine translation and sequence learning using TensorFlow", author="OpenNMT",