diff --git a/CHANGELOG.md b/CHANGELOG.md index 59e0c7fc..940a17f5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -21,8 +21,15 @@ The project follows [semantic versioning 2.0.0](https://semver.org/). The API co ### New features -* Introduce the "Token API": a set of methods that manipulate `Token` objects instead of serialized strings +### Fixes and improvements + +## [v1.19.0](https://github.com/OpenNMT/Tokenizer/releases/tag/v1.19.0) (2020-09-02) + +### New features + * Add BPE dropout ([Provilkov et al. 2019](https://www.aclweb.org/anthology/2020.acl-main.170/)) +* [Python] Introduce the "Token API": a set of methods that manipulate `Token` objects instead of serialized strings +* [Python] Add `unicode_ranges` argument to the `detokenize_with_ranges` method to return ranges over Unicode characters instead of bytes ### Fixes and improvements diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 3506872a..6db8ded1 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -40,7 +40,7 @@ def _maybe_add_library_root(lib_name, header_only=False): setup( name="pyonmttok", - version="1.18.5", + version="1.19.0", license="MIT", description="OpenNMT tokenization library", long_description=_get_long_description(),