From 317b344992707196d8289bd746c6af323cea3f28 Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Mon, 3 Jul 2023 17:59:13 +0200 Subject: [PATCH] Bump version to 3.16.1 --- CHANGELOG.md | 11 +++++++++++ python/ctranslate2/version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d508c4b8b..fe32a31ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ ### Fixes and improvements +## [v3.16.1](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.16.1) (2023-07-03) + +### Fixes and improvements + +* Fix repeated outputs in version 3.16.0 when using `include_prompt_in_result=False` and a batch input with variable lengths: a typo in the code led to `min_length` being incorrectly applied +* Update the Transformers converter to accept extra tokens for Falcon models +* Release the Python GIL when loading the model +* Initialize the rotary embeddings on the GPU instead of the CPU +* Avoid a copy for the input features passed to the Whisper methods +* Vectorize copy in the Tile CUDA operator + ## [v3.16.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.16.0) (2023-06-15) ### New features diff --git a/python/ctranslate2/version.py b/python/ctranslate2/version.py index dc7061a95..01eca7228 100644 --- a/python/ctranslate2/version.py +++ b/python/ctranslate2/version.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "3.16.0" +__version__ = "3.16.1"