From 56880ba73d5a58d29838fcaecd19a0750772bf1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Gallou=C3=A9dec?= <45557362+qgallouedec@users.noreply.github.com> Date: Thu, 30 Jan 2025 09:23:31 +0100 Subject: [PATCH] =?UTF-8?q?=E2=AC=86=EF=B8=8F=20Bump=20dev=20version=20(#2?= =?UTF-8?q?689)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .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 d8ea6d524e..ab071f05d3 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.13-release } + with: { ref: v0.14-release } - name: Set up Python 3.12 uses: actions/setup-python@v5 with: diff --git a/CITATION.cff b/CITATION.cff index 05b9ae2bbc..cc7130b2b1 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -31,4 +31,4 @@ keywords: - pytorch - transformers license: Apache-2.0 -version: 0.13 +version: 0.14 diff --git a/setup.py b/setup.py index 87c52071ee..205666f90f 100644 --- a/setup.py +++ b/setup.py @@ -71,7 +71,7 @@ from setuptools import find_packages, setup -__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) +__version__ = "0.15.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 1eb78822e1..4d5e9e041e 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.14.0.dev0" +__version__ = "0.15.0.dev0" from typing import TYPE_CHECKING