From 2f34a161cd7f5519c051b7aa67964755f6da5c0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Quentin=20Gallou=C3=A9dec?= <45557362+qgallouedec@users.noreply.github.com> Date: Mon, 4 Nov 2024 15:59:52 +0100 Subject: [PATCH] =?UTF-8?q?=E2=8F=AB=20Bump=20dev=20version=20to=20`0.13.0?= =?UTF-8?q?.dev0`=20(#2305)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Bump dev version to `0.13.0.dev0` * Update version number to 0.12 in CITATION.cff * 🧽 Fix judge documentation (#2318) * Update judge examples and documentation * without ':' * Clean doc * Fix typo in example code * Add space after Attributes * Update attribute name in judges.py * Add installation instructions for llm-blender library * Update PairRMJudge attributes documentation * Fix return type in PairRMJudge * Revert "🧽 Fix judge documentation (#2318)" This reverts commit 337005d95169371935fb87f1c559c7412f8472a4. --- CITATION.cff | 2 +- setup.py | 2 +- trl/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 6ea064ec9d..06b7d105d6 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -31,4 +31,4 @@ keywords: - pytorch - transformers license: Apache-2.0 -version: 0.11.1 +version: 0.12 diff --git a/setup.py b/setup.py index 781b036cfe..89a419535d 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,7 @@ from setuptools import find_packages, setup -__version__ = "0.12.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.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) REQUIRED_PKGS = [ "accelerate>=0.34.0", diff --git a/trl/__init__.py b/trl/__init__.py index 28751f56b1..5859a5c91d 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.12.0.dev0" +__version__ = "0.13.0.dev0" from typing import TYPE_CHECKING