Skip to content

Commit

Permalink
Bump version to 2.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Nov 25, 2019
1 parent 5e2c9d5 commit ae20bc1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ OpenNMT-tf follows [semantic versioning 2.0.0](https://semver.org/). The API cov

### Fixes and improvements

## [2.3.0](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.3.0) (2019-11-25)

### New features

* Predefined models `NMTSmallV1`, `NMTMediumV1`, and `NMTBigV1` for compatibility with OpenNMT-tf v1
* Function `opennmt.convert_to_v2_config` to automatically upgrade a V1 configuration
* Function `opennmt.utils.is_v1_checkpoint` to detect OpenNMT-tf v1 checkpoints

### Fixes and improvements

* Fix error when using `auto_config` with model `LstmCnnCrfTagger`
* Fix incomplete `Model.create_variables` after manually calling `Model.build`
* Increase `LayerNorm` default epsilon value to be closer to TensorFlow and PyTorch defaults

## [2.2.1](https://github.com/OpenNMT/OpenNMT-tf/releases/tag/v2.2.1) (2019-11-07)

### Fixes and improvements
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.2" # The short X.Y version.
release = "2.2.1" # The full version, including alpha/beta/rc tags.
version = "2.3" # The short X.Y version.
release = "2.3.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.2.1"
__version__ = "2.3.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.2.1",
version="2.3.0",
license="MIT",
description="Neural machine translation and sequence learning using TensorFlow",
author="OpenNMT",
Expand Down

0 comments on commit ae20bc1

Please sign in to comment.