Skip to content

Commit 9d8228d

Browse files
committed
Bump version to 2.8.0
1 parent c7c95e3 commit 9d8228d

File tree

2 files changed

+19
-1
lines changed

2 files changed

+19
-1
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@
44

55
### Fixes and improvements
66

7+
## [v2.8.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.8.0) (2021-11-15)
8+
9+
### Changes
10+
11+
* The Linux Python wheels now use Intel OpenMP instead of GNU OpenMP for consistency with other published binaries
12+
13+
### New features
14+
15+
* Build Python wheels for Windows
16+
17+
### Fixes and improvements
18+
19+
* Fix segmentation fault when calling `Translator.unload_model` while an asynchronous translation is running
20+
* Fix implementation of repetition penalty that should be applied to all previously generated tokens and not just the tokens of the last step
21+
* Fix missing application of repetition penalty in greedy search
22+
* Fix incorrect token index when using a target prefix and a vocabulary mapping file
23+
* Set the OpenMP flag when compiling on Windows with `-DOPENMP_RUNTIME=INTEL` or `-DOPENMP_RUNTIME=COMP`
24+
725
## [v2.7.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.7.0) (2021-11-03)
826

927
### Changes

python/ctranslate2/version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Version information."""
22

3-
__version__ = "2.7.0"
3+
__version__ = "2.8.0"

0 commit comments

Comments
 (0)