From aafefcaafe2ace83ede0d088c0f18a8933ec5c01 Mon Sep 17 00:00:00 2001 From: Guillaume Klein Date: Fri, 16 Sep 2022 11:05:47 +0200 Subject: [PATCH] Bump version to 2.23.0 --- CHANGELOG.md | 16 ++++++++++++++++ python/ctranslate2/version.py | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 730fdc1df..cb644124f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ ### Fixes and improvements +## [v2.23.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.23.0) (2022-09-16) + +### New features + +* Build wheels for Python 3.11 + +### Fixes and improvements + +* In beam search, get more candidates from the model output and replace finished hypotheses by these additional candidates +* Fix possibly incorrect attention vectors returned from the beam search +* Fix coverage penalty that was actually not applied +* Fix crash when the beam size is larger than the vocabulary size +* Add missing compilation flag `-fvisibility=hidden` when building the Python module +* Update oneDNN to 2.6.2 +* Update OpenBLAS to 0.3.21 + ## [v2.22.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.22.0) (2022-09-02) ### Changes diff --git a/python/ctranslate2/version.py b/python/ctranslate2/version.py index 752493e09..b6a68722a 100644 --- a/python/ctranslate2/version.py +++ b/python/ctranslate2/version.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "2.22.0" +__version__ = "2.23.0"