Skip to content

Commit

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

### Fixes and improvements

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

### New features

* Build wheels for Python 3.10
* Accept passing the vocabulary as a `opennmt.data.Vocab` object or a list of tokens in the OpenNMT-tf converter

### Fixes and improvements

* Fix segmentation fault in greedy search when `normalize_scores` is enabled but not `return_scores`
* Fix segmentation fault when `min_decoding_length` and `max_decoding_length` are both set to 0
* Fix segmentation fault when option `sampling_topk` is larger than the vocabulary size
* Fix incorrect score normalization in greedy search when `max_decoding_length` is reached
* Fix incorrect score normalization in the `return_alternatives` translation mode
* Improve error checking when reading the binary model file
* Apply `LogSoftMax` in-place during decoding and scoring

## [v2.5.1](https://github.com/OpenNMT/CTranslate2/releases/tag/v2.5.1) (2021-10-04)

### Fixes and improvements
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.5.1"
__version__ = "2.6.0"

0 comments on commit eb703a7

Please sign in to comment.