Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0.dev0
0.8.0
2 changes: 1 addition & 1 deletion native/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def get_inputs(self) -> list[str]:
"install_cmake": install_cmake,
},
name="fairseq2n",
version="0.8.0.dev0",
version="0.8.0",
description="FAIR Sequence Modeling Toolkit (Native)",
long_description="https://github.com/facebookresearch/fairseq2",
long_description_content_type="text/plain",
Expand Down
2 changes: 1 addition & 1 deletion native/python/src/fairseq2n/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from __future__ import annotations

__version__ = "0.8.0.dev0"
__version__ = "0.8.0"

import platform
import site
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from setuptools import find_namespace_packages, setup

version = "0.8.0.dev0"
version = "0.8.0"

# If this is a local development install, allow nightly fairseq2n builds to
# take precedence.
Expand Down
2 changes: 1 addition & 1 deletion src/fairseq2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from fairseq2.error import InvalidOperationError
from fairseq2.runtime.dependency import DependencyContainer, DependencyResolver

__version__ = "0.8.0.dev0"
__version__ = "0.8.0"


_in_call: bool = False
Expand Down
Loading