From 8a1df3697bbf816b4183ef35764a4c9fe0b8ef68 Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Fri, 3 Feb 2023 09:21:19 +0100 Subject: [PATCH] Bump version to 3.4.0 --- CHANGELOG.md | 11 +++++++++++ python/ctranslate2/version.py | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d814bf7e..849919239 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ ### Fixes and improvements +## [v3.4.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.4.0) (2023-02-03) + +### Fixes and improvements + +* Fix incorrect vocabulary in M2M100 models after conversion with `transformers>=4.24` +* Fix incorrect model outputs when executing with very large batch sizes on GPU +* Fix memory error in biased decoding: the vector of divergence was read and updated past its length +* Allow setting `prefix_bias_beta` > 0 with `beam_size` == 1 +* Prevent timestamps from decreasing during Whisper generation +* Make some error messages more helpful when implementing a custom converter + ## [v3.3.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.3.0) (2023-01-02) ### New features diff --git a/python/ctranslate2/version.py b/python/ctranslate2/version.py index b7abd8648..b9e2e9d59 100644 --- a/python/ctranslate2/version.py +++ b/python/ctranslate2/version.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "3.3.0" +__version__ = "3.4.0"