Skip to content

Commit

Permalink
Bump to v0.4.0dev0 (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbalioglu authored Dec 31, 2024
1 parent 0f02af7 commit 03511c2
Show file tree
Hide file tree
Showing 7 changed files with 26 additions and 6 deletions.
20 changes: 20 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,26 @@ matrix shows the supported combinations.
<th>Variant*</th>
<th>Arch</th>
</thead>
<tbody>
<tr>
<td rowspan=3><code>HEAD</code></td>
<td><code>2.5.0</code>, <code>2.5.1</code></td>
<td><code>&gt;=3.10</code>, <code>&lt;=3.12</code></td>
<td><code>cpu</code>, <code>cu118</code>, <code>cu121</code>, <code>cu124</code></td>
<td><code>x86_64</code></td>
</tr>
<tr>
<td><code>2.4.0</code>, <code>2.4.1</code></td>
<td><code>&gt;=3.10</code>, <code>&lt;=3.12</code></td>
<td><code>cpu</code>, <code>cu118</code>, <code>cu121</code>, <code>cu124</code></td>
<td><code>x86_64</code></td>
</tr>
<tr>
<td><code>2.3.0</code>, <code>2.3.1</code></td>
<td><code>&gt;=3.10</code>, <code>&lt;=3.12</code></td>
<td><code>cpu</code>, <code>cu118</code>, <code>cu121</code></td>
<td><code>x86_64</code></td>
</tr>
<tbody>
<tr>
<td rowspan=3><code>0.3.0</code></td>
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.0
0.4.0dev0
2 changes: 1 addition & 1 deletion native/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.3.0 LANGUAGES C CXX)
project(fairseq2n VERSION 0.4.0 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 native/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ def get_inputs(self) -> list[str]:
"install_cmake": install_cmake,
},
name="fairseq2n",
version="0.3.0",
version="0.4.0dev0",
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.3.0"
__version__ = "0.4.0dev0"

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.3.0"
version = "0.4.0dev0"

# 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 @@ -6,7 +6,7 @@

from __future__ import annotations

__version__ = "0.3.0"
__version__ = "0.4.0dev0"

import fairseq2n # Report any fairseq2n initialization error eagerly.

Expand Down

0 comments on commit 03511c2

Please sign in to comment.