From 470d7cf144b412354a49a3a6daf080b76682a08a Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Thu, 17 Jun 2021 12:36:07 +0200 Subject: [PATCH] Bump version to 2.20.0 --- CHANGELOG.md | 12 ++++++++++++ opennmt/version.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 141b2726c..549c611c1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,18 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov ### Fixes and improvements +## [2.20.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.20.0) (2021-06-17) + +### New features + +* Update the minimum required CTranslate2 version to 2.0 + +### Fixes and improvements + +* Set a timeout for each training attempt when autotuning the batch size +* Set `keep_checkpoint_max` to `average_last_checkpoints` if the later value is larger +* Update the minimum required pyonmttok version to include the latest fixes + ## [2.19.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.19.0) (2021-05-31) ### New features diff --git a/opennmt/version.py b/opennmt/version.py index c7156990a..85056163f 100644 --- a/opennmt/version.py +++ b/opennmt/version.py @@ -1,6 +1,6 @@ """OpenNMT-tf version.""" -__version__ = "2.19.0" +__version__ = "2.20.0" INCLUSIVE_MIN_TF_VERSION = "2.3.0" EXCLUSIVE_MAX_TF_VERSION = "2.6.0"