Skip to content

Commit 4fd6d8b

Browse files
authored
Bump to v0.7.0 (#1408)
1 parent 6fee400 commit 4fd6d8b

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ All notable changes to fairseq2 are documented in this file.
33

44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
55

6-
## [0.7.0] - TBD
6+
## [0.7.0] - Nov 4th, 2025
77
- `RecipeModel` is now callable and forwards the call to `RecipeModel.module`
88
for a cleaner, more convenient syntax.
99
- A new `get_asset_download_manager` helper function to download assets in
@@ -12,6 +12,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
1212
recipe-specific asset cards that cannot be (accidentally) overwritten by users.
1313
[More info](https://github.com/facebookresearch/fairseq2/pull/1373)
1414
- Reference API documentation has been flattened and updated for better readability.
15+
- Revised Wav2Vec 2.0 recipes have been merged back and are available under the
16+
recipes/wav2vec2 directory.
1517

1618
## [0.6.0] - Oct 7th, 2025
1719
- `fairseq2.sharder` is deprecated. fairseq2 now expects parallelism strategies

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.7.0.dev0
1+
0.7.0

native/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def get_inputs(self) -> list[str]:
136136
"install_cmake": install_cmake,
137137
},
138138
name="fairseq2n",
139-
version="0.7.0.dev0",
139+
version="0.7.0",
140140
description="FAIR Sequence Modeling Toolkit (Native)",
141141
long_description="https://github.com/facebookresearch/fairseq2",
142142
long_description_content_type="text/plain",

native/python/src/fairseq2n/__init__.py

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

77
from __future__ import annotations
88

9-
__version__ = "0.7.0.dev0"
9+
__version__ = "0.7.0"
1010

1111
import platform
1212
import site

setup.py

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

99
from setuptools import find_namespace_packages, setup
1010

11-
version = "0.7.0.dev0"
11+
version = "0.7.0"
1212

1313
# If this is a local development install, allow nightly fairseq2n builds to
1414
# take precedence.

src/fairseq2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from fairseq2.error import InvalidOperationError
1515
from fairseq2.runtime.dependency import DependencyContainer, DependencyResolver
1616

17-
__version__ = "0.7.0.dev0"
17+
__version__ = "0.7.0"
1818

1919

2020
_in_call: bool = False

0 commit comments

Comments
 (0)