From b002d0096ea82c77be7027b205d0b29de82edde4 Mon Sep 17 00:00:00 2001 From: Myle Ott Date: Fri, 19 Jul 2019 06:30:30 -0700 Subject: [PATCH] v0.7.1 -> v0.7.2 (#891) Summary: No major API changes since the last release. Cutting a new release since we'll be merging significant (possibly breaking) changes to logging, data loading and the masked LM implementation soon. Pull Request resolved: https://github.com/pytorch/fairseq/pull/891 Differential Revision: D16377132 Pulled By: myleott fbshipit-source-id: f1cb88e671ccd510e53334d0f449fe18585268c7 --- docs/conf.py | 4 ++-- fairseq/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 7239bd3c19..7f108940d0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -60,9 +60,9 @@ # built documents. # # The short X.Y version. -version = '0.7.1' +version = '0.7.2' # The full version, including alpha/beta/rc tags. -release = '0.7.1' +release = '0.7.2' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/fairseq/__init__.py b/fairseq/__init__.py index c3f174e67c..90ddc77812 100644 --- a/fairseq/__init__.py +++ b/fairseq/__init__.py @@ -6,7 +6,7 @@ # can be found in the PATENTS file in the same directory. __all__ = ['pdb'] -__version__ = '0.7.1' +__version__ = '0.7.2' import fairseq.criterions import fairseq.models diff --git a/setup.py b/setup.py index 19cea38980..7c965010a7 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( name='fairseq', - version='0.7.1', + version='0.7.2', description='Facebook AI Research Sequence-to-Sequence Toolkit', url='https://github.com/pytorch/fairseq', classifiers=[