From 59d223abcc7e636c1c2956e62482bc3299cc7766 Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Thu, 15 Jun 2023 14:57:36 +0200 Subject: [PATCH] Bump version to 3.16.0 --- CHANGELOG.md | 15 +++++++++++++++ python/ctranslate2/version.py | 2 +- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dca0ffc5..d508c4b8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,21 @@ ### Fixes and improvements +## [v3.16.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.16.0) (2023-06-15) + +### New features + +* Update the Transformers converter to support more architectures: + * Falcon-40B + * XLM-RoBERTa +* Add the generation option `sampling_topp` to enable top-p (nucleus) sampling +* Save vocabulary files in the JSON format to better support tokens containing newlines or carriage returns + +### Fixes and improvements + +* Fix the application of `min_length` and `max_length` when using `include_prompt_in_result=False` and a batch input with variable lengths: the length constraint should only apply to the sequence after the prompt +* Update oneDNN to 3.1.1 + ## [v3.15.1](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.15.1) (2023-06-09) ### Fixes and improvements diff --git a/python/ctranslate2/version.py b/python/ctranslate2/version.py index fab723b2b..dc7061a95 100644 --- a/python/ctranslate2/version.py +++ b/python/ctranslate2/version.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "3.15.1" +__version__ = "3.16.0"