From 83e615d66905b8ca7483122a37da1a85f13f4b8e Mon Sep 17 00:00:00 2001 From: Myle Ott Date: Tue, 5 Jan 2021 12:02:23 -0800 Subject: [PATCH] v0.10.1 -> v0.10.2 Bug fixes (see https://github.com/pytorch/fairseq/issues?q=label:0.10.2) --- docs/conf.py | 4 ++-- examples/__init__.py | 2 +- fairseq/__init__.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 59f8e3033f..fc2bb721a9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -61,9 +61,9 @@ # built documents. # # The short X.Y version. -version = "0.10.1" +version = "0.10.2" # The full version, including alpha/beta/rc tags. -release = "0.10.1" +release = "0.10.2" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/examples/__init__.py b/examples/__init__.py index d65c420c2b..209ded366c 100644 --- a/examples/__init__.py +++ b/examples/__init__.py @@ -3,6 +3,6 @@ # This source code is licensed under the MIT license found in the # LICENSE file in the root directory of this source tree. -__version__ = "0.10.1" +__version__ = "0.10.2" import examples.noisychannel # noqa diff --git a/fairseq/__init__.py b/fairseq/__init__.py index c089ba0d93..9c1f7569a9 100644 --- a/fairseq/__init__.py +++ b/fairseq/__init__.py @@ -5,7 +5,7 @@ """isort:skip_file""" __all__ = ["pdb"] -__version__ = "0.10.1" +__version__ = "0.10.2" import sys diff --git a/setup.py b/setup.py index 517d13b50a..02ee1f11bb 100644 --- a/setup.py +++ b/setup.py @@ -135,7 +135,7 @@ def include_dirs(self, dirs): def do_setup(package_data): setup( name="fairseq", - version="0.10.1", + version="0.10.2", description="Facebook AI Research Sequence-to-Sequence Toolkit", url="https://github.com/pytorch/fairseq", classifiers=[