Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dump to v0.1.1 #22

Merged
merged 1 commit into from
Sep 7, 2023
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.2.0+devel
0.1.1
2 changes: 1 addition & 1 deletion fairseq2n/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

cmake_minimum_required(VERSION 3.21.0)

project(fairseq2n VERSION 0.2.0 LANGUAGES C CXX)
project(fairseq2n VERSION 0.1.1 LANGUAGES C CXX)

if(NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set_property(CACHE CMAKE_BUILD_TYPE PROPERTY VALUE RelWithDebInfo)
Expand Down
2 changes: 1 addition & 1 deletion fairseq2n/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.2.0+devel",
version="0.1.1",
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 fairseq2n/python/src/fairseq2n/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from pathlib import Path
from typing import List, Optional, Tuple

__version__ = "0.2.0+devel"
__version__ = "0.1.1"


# Keeps the shared libraries that we load using our own extended lookup logic
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

from setuptools import find_packages, setup

version = "0.2.0+devel"
version = "0.1.1"

# DO NOT forget to update the fallback version with each release!
fallback_fairseq2n_version = "0.1.0"
fallback_fairseq2n_version = "0.1.1"

if "CI" in environ or "FAIRSEQ2N_DEVEL" in environ:
fairseq2n_version = version
Expand Down
2 changes: 1 addition & 1 deletion src/fairseq2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# We import fairseq2n to report any initialization error eagerly.
import fairseq2n

__version__ = "0.2.0+devel"
__version__ = "0.1.1"


# If ``True``, indicates that we are run under Sphinx.
Expand Down