Skip to content

Commit

Permalink
Bump to v0.2.0 (#197)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbalioglu committed Nov 29, 2023
1 parent 16e0f95 commit 76015a1
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_build_wheels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
matrix:
torch: ['2.1.1']
py: ['3.8', '3.9', '3.10', '3.11']
variant: ['cu118']
variant: ['cu121']
with:
torch: ${{ matrix.torch }}
py: ${{ matrix.py }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
matrix:
torch: ['2.1.1']
py: ['3.8', '3.9', '3.10', '3.11']
variant: ['cu118']
variant: ['cu121']
max-parallel: 1
with:
os: 'linux'
Expand Down
10 changes: 7 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,13 @@ All notable changes to fairseq2 are documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).

## [0.2] - TBD
- Introduced LLaMA and LLaMA 2 models
- Introduced GLUFeedForwardNetwork
## [0.2.0] - 2023-11-29
- Introduced LLaMA and LLaMA 2
- Introduced Mistral 7B
- Introduced LoRA fine-tuning
- Revised the sequence generator API
- Introduced support for lazy padding and attention masks
- Many smaller improvements to existing APIs

## [0.1.1] - 2023-09-07
- Improvements to the build system and CI pipelines
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0.dev0
0.2.0
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.dev0",
version="0.2.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 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.dev0"
__version__ = "0.2.0"


# Keeps the shared libraries that we load using our own extended lookup logic
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

from setuptools import find_packages, setup

version = "0.2.0.dev0"
version = "0.2.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 @@ -8,7 +8,7 @@
# We import fairseq2n to report any initialization error eagerly.
import fairseq2n

__version__ = "0.2.0.dev0"
__version__ = "0.2.0"


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

0 comments on commit 76015a1

Please sign in to comment.