Skip to content

Commit

Permalink
Bump version to 2.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
guillaumekln committed Jul 27, 2022
1 parent 27d6182 commit dbfdd4f
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.21.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.21.0) (2022-07-27)

### New features

* Support NLLB multilingual models via the Transformers converter
* Support Pegasus summarization models via the Transformers converter

### Fixes and improvements

* Do not stop decoding when the EOS token is coming from the user input: this is required by some text generation models like `microsoft/DialoGPT` where EOS is used as a separator
* Fix conversion error for language models trained with OpenNMT-py
* Fix conversion of models that are not using bias terms in the multi-head attention
* Fix data type error when enabling the translation options `return_alternatives` and `return_attention` with a `float16` model
* Improve CPU performance of language models quantized to `int8`
* Implement a new vectorized GELU operator on CPU
* Raise a more explicit error when trying to convert a unsupported Fairseq model
* Update pybind11 to 2.10.0

## [v2.20.0](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.20.0) (2022-07-06)

### New features
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.20.0"
__version__ = "2.21.0"

0 comments on commit dbfdd4f

Please sign in to comment.