Skip to content

Commit 87e967d

Browse files
authored
bump version (OpenNMT#1434)
1 parent fae4d62 commit 87e967d

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
## [Unreleased]
66
### Fixes and improvements
77

8+
## [0.9.0](https://github.com/OpenNMT/OpenNMT-py/tree/0.9.0) (2019-05-16)
9+
* Faster vocab building when processing shards (no reloading)
10+
* New dataweighting feature
11+
* New dropout scheduler.
12+
* Small fixes and add-ons
13+
814
## [0.8.2](https://github.com/OpenNMT/OpenNMT-py/tree/0.8.2) (2019-02-16)
915
* Update documentation and Library example
1016
* Revamp args

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ All dependencies can be installed via:
3434
pip install -r requirements.txt
3535
```
3636

37-
Note that we currently only support PyTorch 1.0.0
37+
Note that we currently only support PyTorch 1.1 (should work with 1.0)
3838

3939
## Features
4040

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__ = "0.8.2"
20+
__version__ = "0.9.0"

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
six
22
tqdm==4.30.*
3-
torch>=1.0
3+
torch>=1.1
44
git+https://github.com/pytorch/text.git@master#wheel=torchtext
55
future
66
configargparse

setup.py

Lines changed: 1 addition & 1 deletion
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.8.2',
7+
version='0.9.0',
88

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

0 commit comments

Comments
 (0)