Skip to content

Commit ffffe04

Browse files
Myle Ottfacebook-github-bot
authored andcommitted
v0.7.2 -> v0.8.0 (#1017)
Summary: Changelog: - Relicensed under MIT license - Add RoBERTa - Add wav2vec - Add WMT'19 models - Add initial ASR code - Changed torch.hub interface (`generate` renamed to `translate`) - Add `--tokenizer` and `--bpe` - f812e52: Renamed data.transforms -> data.encoders - 654affc: New Dataset API (optional) - `47fd985`: Deprecate old Masked LM components - `5f78106`: Set mmap as default dataset format and infer format automatically - Misc fixes for sampling - Misc fixes to support PyTorch 1.2 Pull Request resolved: #1017 Differential Revision: D16799880 Pulled By: myleott fbshipit-source-id: 45ad8bc531724a53063cbc24ca1c93f715cdc5a7
1 parent 7c89e13 commit ffffe04

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@
6060
# built documents.
6161
#
6262
# The short X.Y version.
63-
version = '0.7.2'
63+
version = '0.8.0'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '0.7.2'
65+
release = '0.8.0'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

fairseq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# LICENSE file in the root directory of this source tree.
55

66
__all__ = ['pdb']
7-
__version__ = '0.7.2'
7+
__version__ = '0.8.0'
88

99
import fairseq.criterions # noqa
1010
import fairseq.models # noqa

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030

3131
setup(
3232
name='fairseq',
33-
version='0.7.2',
33+
version='0.8.0',
3434
description='Facebook AI Research Sequence-to-Sequence Toolkit',
3535
url='https://github.com/pytorch/fairseq',
3636
classifiers=[

0 commit comments

Comments
 (0)