Skip to content

Commit

Permalink
v0.10.0 -> v0.10.1
Browse files Browse the repository at this point in the history
Bug fixes
  • Loading branch information
myleott committed Nov 21, 2020
1 parent fb04502 commit 8a0b56e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -61,9 +61,9 @@
# built documents.
#
# The short X.Y version.
version = "0.10.0"
version = "0.10.1"
# The full version, including alpha/beta/rc tags.
release = "0.10.0"
release = "0.10.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion examples/__init__.py
Expand Up @@ -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.0"
__version__ = "0.10.1"

import examples.noisychannel # noqa
2 changes: 1 addition & 1 deletion fairseq/__init__.py
Expand Up @@ -5,7 +5,7 @@
"""isort:skip_file"""

__all__ = ["pdb"]
__version__ = "0.10.0"
__version__ = "0.10.1"

import sys

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -135,7 +135,7 @@ def include_dirs(self, dirs):
def do_setup(package_data):
setup(
name="fairseq",
version="0.10.0",
version="0.10.1",
description="Facebook AI Research Sequence-to-Sequence Toolkit",
url="https://github.com/pytorch/fairseq",
classifiers=[
Expand Down

0 comments on commit 8a0b56e

Please sign in to comment.