Skip to content

Commit 60125c8

Browse files
Bump v1.2.0 (#1850)
1 parent eaaae6a commit 60125c8

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@
44

55
## [Unreleased]
66

7+
## [1.2.0](https://github.com/OpenNMT/OpenNMT-py/tree/1.2.0) (2020-08-17)
8+
### Fixes and improvements
9+
* Support pytorch 1.6 (e813f4d, eaaae6a)
10+
* Support official torch 1.6 AMP for mixed precision training (2ac1ed0)
11+
* Flag to override batch_size_multiple in FP16 mode, useful in some memory constrained setups (23e5018)
12+
* Pass a dict and allow custom options in preprocess/postprocess functions of REST server (41f0c02, 8ec54d2)
13+
* Allow different tokenization for source and target in REST server (bb2d045, 4659170)
14+
* Various bug fixes
15+
16+
### New features
17+
* Gated Graph Sequence Neural Networks encoder (11e8d0), thanks @SteveKommrusch
18+
* Decoding with a target prefix (95aeefb, 0e143ff, 91ab592), thanks @Zenglinxiao
19+
720
## [1.1.1](https://github.com/OpenNMT/OpenNMT-py/tree/1.1.1) (2020-03-20)
821
### Fixes and improvements
922
* Fix backcompatibility when no 'corpus_id' field (c313c28)

onmt/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
__all__ = [onmt.inputters, onmt.encoders, onmt.decoders, onmt.models,
1818
onmt.utils, onmt.modules, "Trainer"]
1919

20-
__version__ = "1.1.1"
20+
__version__ = "1.2.0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
description='A python implementation of OpenNMT',
1212
long_description=long_description,
1313
long_description_content_type='text/markdown',
14-
version='1.1.1',
14+
version='1.2.0',
1515
packages=find_packages(),
1616
project_urls={
1717
"Documentation": "http://opennmt.net/OpenNMT-py/",

0 commit comments

Comments
 (0)