File tree Expand file tree Collapse file tree 6 files changed +8
-6
lines changed
Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ All notable changes to fairseq2 are documented in this file.
33
44The 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
Original file line number Diff line number Diff line change 1- 0.7.0.dev0
1+ 0.7.0
Original file line number Diff line number Diff 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" ,
Original file line number Diff line number Diff line change 66
77from __future__ import annotations
88
9- __version__ = "0.7.0.dev0 "
9+ __version__ = "0.7.0"
1010
1111import platform
1212import site
Original file line number Diff line number Diff line change 88
99from 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.
Original file line number Diff line number Diff line change 1414from fairseq2 .error import InvalidOperationError
1515from 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
You can’t perform that action at this time.
0 commit comments