Skip to content

Commit

Permalink
Bump version to 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Nov 15, 2021
1 parent c7c95e3 commit 9d8228d
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@

### Fixes and improvements

## [v2.8.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.8.0) (2021-11-15)

### Changes

* The Linux Python wheels now use Intel OpenMP instead of GNU OpenMP for consistency with other published binaries

### New features

* Build Python wheels for Windows

### Fixes and improvements

* Fix segmentation fault when calling `Translator.unload_model` while an asynchronous translation is running
* Fix implementation of repetition penalty that should be applied to all previously generated tokens and not just the tokens of the last step
* Fix missing application of repetition penalty in greedy search
* Fix incorrect token index when using a target prefix and a vocabulary mapping file
* Set the OpenMP flag when compiling on Windows with `-DOPENMP_RUNTIME=INTEL` or `-DOPENMP_RUNTIME=COMP`

## [v2.7.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.7.0) (2021-11-03)

### Changes
Expand Down
2 changes: 1 addition & 1 deletion python/ctranslate2/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Version information."""

__version__ = "2.7.0"
__version__ = "2.8.0"

0 comments on commit 9d8228d

Please sign in to comment.