Skip to content

Commit 5d6f23b

Browse files
authored
bump version 0.7.1 (#1217)
1 parent d1d441d commit 5d6f23b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,13 @@
33

44

55
## [Unreleased]
6+
### Fixes and improvements
7+
## [0.7.1](https://github.com/OpenNMT/OpenNMT-py/tree/0.7.1) (2019-01-24)
8+
* Many fixes and code refactoring thanks @bpopeters, @flauted, @guillaumekln
69

710
### New features
11+
* Random sampling thanks @daphnei
12+
* Enable sharding for huge files at translation
813

914
### Fixes and improvements
1015
## [0.7.0](https://github.com/OpenNMT/OpenNMT-py/tree/0.7.0) (2019-01-02)

onmt/__init__.py

+1-1
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__ = "0.7.0"
20+
__version__ = "0.7.1"

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
setup(name='OpenNMT-py',
66
description='A python implementation of OpenNMT',
7-
version='0.7.0',
7+
version='0.7.1',
88

99
packages=['onmt', 'onmt.encoders', 'onmt.modules', 'onmt.tests',
1010
'onmt.translate', 'onmt.decoders', 'onmt.inputters',

0 commit comments

Comments
 (0)