Skip to content

Commit

Permalink
Dump to v0.1.1 (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbalioglu authored Sep 7, 2023
1 parent bc304e8 commit 85ee700
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
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

0 comments on commit 85ee700

Please sign in to comment.