From 87e967dc81cd680287d7a82acfbf665bfcbc083d Mon Sep 17 00:00:00 2001 From: Vincent Nguyen Date: Thu, 16 May 2019 17:15:50 +0200 Subject: [PATCH] bump version (#1434) --- CHANGELOG.md | 6 ++++++ README.md | 2 +- onmt/__init__.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bf4096c2d9..37b5eb24b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ ## [Unreleased] ### Fixes and improvements +## [0.9.0](https://github.com/OpenNMT/OpenNMT-py/tree/0.9.0) (2019-05-16) +* Faster vocab building when processing shards (no reloading) +* New dataweighting feature +* New dropout scheduler. +* Small fixes and add-ons + ## [0.8.2](https://github.com/OpenNMT/OpenNMT-py/tree/0.8.2) (2019-02-16) * Update documentation and Library example * Revamp args diff --git a/README.md b/README.md index 4307884a76..f4ca6bf12e 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ All dependencies can be installed via: pip install -r requirements.txt ``` -Note that we currently only support PyTorch 1.0.0 +Note that we currently only support PyTorch 1.1 (should work with 1.0) ## Features diff --git a/onmt/__init__.py b/onmt/__init__.py index a7c27adddc..c32500700c 100644 --- a/onmt/__init__.py +++ b/onmt/__init__.py @@ -17,4 +17,4 @@ __all__ = [onmt.inputters, onmt.encoders, onmt.decoders, onmt.models, onmt.utils, onmt.modules, "Trainer"] -__version__ = "0.8.2" +__version__ = "0.9.0" diff --git a/requirements.txt b/requirements.txt index fba414f2e8..ab66f3f280 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ six tqdm==4.30.* -torch>=1.0 +torch>=1.1 git+https://github.com/pytorch/text.git@master#wheel=torchtext future configargparse diff --git a/setup.py b/setup.py index 66abc70f77..8c44401e4f 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup(name='OpenNMT-py', description='A python implementation of OpenNMT', - version='0.8.2', + version='0.9.0', packages=['onmt', 'onmt.encoders', 'onmt.modules', 'onmt.tests', 'onmt.translate', 'onmt.decoders', 'onmt.inputters',