From 6dba615ee11c5fa013b67a47e85edc97f93c34b3 Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Tue, 1 Oct 2019 09:46:37 +0200 Subject: [PATCH] Bump version --- CHANGELOG.md | 6 ++++++ docs/conf.py | 2 +- opennmt/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 65f18be26..328f11507 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov ## [Unreleased] +### New features + +### Fixes and improvements + +## [2.0.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.0.0) (2019-10-01) + OpenNMT-tf 2.0 is the first major update of the project. The goal of this release is to use the new features and practices introduced by TensorFlow 2.0. ### Breaking changes diff --git a/docs/conf.py b/docs/conf.py index e1a530dbc..81e6f5803 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -11,7 +11,7 @@ language = "en" version = "2.0" # The short X.Y version. -release = "2.0.0a0" # The full version, including alpha/beta/rc tags. +release = "2.0.0" # The full version, including alpha/beta/rc tags. extensions = [ "recommonmark", diff --git a/opennmt/__init__.py b/opennmt/__init__.py index 0f07b12b8..0f14701c8 100644 --- a/opennmt/__init__.py +++ b/opennmt/__init__.py @@ -1,6 +1,6 @@ """OpenNMT module.""" -__version__ = "2.0.0a0" +__version__ = "2.0.0" from opennmt.config import load_config from opennmt.config import load_model diff --git a/setup.py b/setup.py index fadfad97a..ebf5559d0 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name="OpenNMT-tf", - version="2.0.0a0", + version="2.0.0", license="MIT", description="Neural machine translation and sequence learning using TensorFlow", author="OpenNMT",