From 03511c2d08fcae5946638a900138d3bc5070370b Mon Sep 17 00:00:00 2001 From: Can Balioglu Date: Tue, 31 Dec 2024 07:51:18 -0500 Subject: [PATCH] Bump to v0.4.0dev0 (#943) --- README.md | 20 ++++++++++++++++++++ VERSION | 2 +- native/CMakeLists.txt | 2 +- native/python/setup.py | 2 +- native/python/src/fairseq2n/__init__.py | 2 +- setup.py | 2 +- src/fairseq2/__init__.py | 2 +- 7 files changed, 26 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 4b46efcaf..81e207a50 100644 --- a/README.md +++ b/README.md @@ -88,6 +88,26 @@ matrix shows the supported combinations. Variant* Arch + + + HEAD + 2.5.0, 2.5.1 + >=3.10, <=3.12 + cpu, cu118, cu121, cu124 + x86_64 + + + 2.4.0, 2.4.1 + >=3.10, <=3.12 + cpu, cu118, cu121, cu124 + x86_64 + + + 2.3.0, 2.3.1 + >=3.10, <=3.12 + cpu, cu118, cu121 + x86_64 + 0.3.0 diff --git a/VERSION b/VERSION index 0d91a54c7..f28772671 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.3.0 +0.4.0dev0 diff --git a/native/CMakeLists.txt b/native/CMakeLists.txt index e00b15327..ad1f3706b 100644 --- a/native/CMakeLists.txt +++ b/native/CMakeLists.txt @@ -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) diff --git a/native/python/setup.py b/native/python/setup.py index ed999d15d..86f9d2a74 100644 --- a/native/python/setup.py +++ b/native/python/setup.py @@ -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", diff --git a/native/python/src/fairseq2n/__init__.py b/native/python/src/fairseq2n/__init__.py index 57a742593..781cc516e 100644 --- a/native/python/src/fairseq2n/__init__.py +++ b/native/python/src/fairseq2n/__init__.py @@ -6,7 +6,7 @@ from __future__ import annotations -__version__ = "0.3.0" +__version__ = "0.4.0dev0" import platform import site diff --git a/setup.py b/setup.py index 0d428f79d..ca972b580 100644 --- a/setup.py +++ b/setup.py @@ -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. diff --git a/src/fairseq2/__init__.py b/src/fairseq2/__init__.py index eb238169d..2dd74f8cd 100644 --- a/src/fairseq2/__init__.py +++ b/src/fairseq2/__init__.py @@ -6,7 +6,7 @@ from __future__ import annotations -__version__ = "0.3.0" +__version__ = "0.4.0dev0" import fairseq2n # Report any fairseq2n initialization error eagerly.