Skip to content

Commit f3bf3a4

Browse files
authored
Bump to v0.8.0 (#1501)
1 parent d0ec690 commit f3bf3a4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.0.dev0
1+
0.8.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.8.0.dev0",
139+
version="0.8.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.8.0.dev0"
9+
__version__ = "0.8.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.8.0.dev0"
11+
version = "0.8.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.8.0.dev0"
17+
__version__ = "0.8.0"
1818

1919

2020
_in_call: bool = False

0 commit comments

Comments
 (0)