Skip to content

Commit

Permalink
Bump version to 2.9.2
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Apr 22, 2020
1 parent e287b50 commit 6c7fc9b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov

### Fixes and improvements

## [2.9.2](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.9.2) (2020-04-22)

### Fixes and improvements

* Pin `sacrebleu` package to version 1.4.4 to fix installation issue on Windows
* Clarify error when the training dataset is empty

## [2.9.1](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.9.1) (2020-04-14)

### Fixes and improvements
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
language = "en"

version = "2.9" # The short X.Y version.
release = "2.9.1" # The full version, including alpha/beta/rc tags.
release = "2.9.2" # The full version, including alpha/beta/rc tags.

extensions = [
"recommonmark",
Expand Down
2 changes: 1 addition & 1 deletion opennmt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""OpenNMT module."""

__version__ = "2.9.1"
__version__ = "2.9.2"

from opennmt.config import convert_to_v2_config
from opennmt.config import load_config
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_long_description():

setup(
name="OpenNMT-tf",
version="2.9.1",
version="2.9.2",
license="MIT",
description="Neural machine translation and sequence learning using TensorFlow",
long_description=get_long_description(),
Expand Down

0 comments on commit 6c7fc9b

Please sign in to comment.