From f68d11f9f9b5c8afe020bff0decad161d0958bdd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Gallou=C3=A9dec?= Date: Sun, 15 Dec 2024 19:56:54 +0100 Subject: [PATCH] Bump version --- .github/workflows/tests_latest.yml | 2 +- CITATION.cff | 2 +- setup.py | 2 +- trl/__init__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tests_latest.yml b/.github/workflows/tests_latest.yml index 3441de5461..d8ea6d524e 100644 --- a/.github/workflows/tests_latest.yml +++ b/.github/workflows/tests_latest.yml @@ -17,7 +17,7 @@ jobs: steps: - name: Git checkout uses: actions/checkout@v4 - with: { ref: v0.12-release } + with: { ref: v0.13-release } - name: Set up Python 3.12 uses: actions/setup-python@v5 with: diff --git a/CITATION.cff b/CITATION.cff index 06b7d105d6..05b9ae2bbc 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -31,4 +31,4 @@ keywords: - pytorch - transformers license: Apache-2.0 -version: 0.12 +version: 0.13 diff --git a/setup.py b/setup.py index 28d483e0c8..313c958c6e 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ from setuptools import find_packages, setup -__version__ = "0.13.0.dev0" # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) +__version__ = "0.14.0.dev0" # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots) REQUIRED_PKGS = [ "accelerate>=0.34.0", diff --git a/trl/__init__.py b/trl/__init__.py index a27b00305a..2df981580c 100644 --- a/trl/__init__.py +++ b/trl/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "0.13.0.dev0" +__version__ = "0.14.0.dev0" from typing import TYPE_CHECKING