Skip to content

Commit

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

### New features

### Fixes and improvements

## [2.5.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.5.0) (2020-01-16)

### New features

* Update to TensorFlow 2.1<br/>OpenNMT-tf now depends on the `tensorflow` pip package instead of `tensorflow-gpu`. The `tensorflow` package now includes GPU support by default. If you are upgrading an existing environment, we recommend uninstalling the `tensorflow-gpu` package before doing so.
* Update to TensorFlow Addons 0.7 with Windows support
* Data parameter `export_vocabulary_assets` to control whether vocabularies are exported as file assets or embedded in the graph itself
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
author = "OpenNMT"
language = "en"

version = "2.4" # The short X.Y version.
release = "2.4.0" # The full version, including alpha/beta/rc tags.
version = "2.5" # The short X.Y version.
release = "2.5.0" # 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.4.0"
__version__ = "2.5.0"

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 @@ -7,7 +7,7 @@

setup(
name="OpenNMT-tf",
version="2.4.0",
version="2.5.0",
license="MIT",
description="Neural machine translation and sequence learning using TensorFlow",
author="OpenNMT",
Expand Down

0 comments on commit fa6a6ce

Please sign in to comment.