diff --git a/CHANGELOG.md b/CHANGELOG.md index cf9362978..e3a93048f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ ### Fixes and improvements +## [v3.5.1](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.5.1) (2023-02-13) + +### Fixes and improvements + +* Whisper: fix an incorrect timestamp rule that prevented timestamps to be generated in pairs +* Whisper: ignore the EOS token when applying the length penalty to match the original implementation + ## [v3.5.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v3.5.0) (2023-02-10) ### New features diff --git a/python/ctranslate2/version.py b/python/ctranslate2/version.py index 3e76649e9..e02dc55c9 100644 --- a/python/ctranslate2/version.py +++ b/python/ctranslate2/version.py @@ -1,3 +1,3 @@ """Version information.""" -__version__ = "3.5.0" +__version__ = "3.5.1"