Skip to content

Commit 23a635e

Browse files
authored
Release: v0.16 (#3137)
1 parent 9b38b0b commit 23a635e

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.github/workflows/tests_latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- name: Git checkout
1919
uses: actions/checkout@v4
20-
with: { ref: v0.15-release }
20+
with: { ref: v0.16-release }
2121
- name: Set up Python 3.12
2222
uses: actions/setup-python@v5
2323
with:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,4 +142,4 @@ checklink/cookies.txt
142142
# wandb files
143143
nbs/wandb/
144144
examples/notebooks/wandb/
145-
wandb/
145+
wandb/

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ keywords:
3131
- pytorch
3232
- transformers
3333
license: Apache-2.0
34-
version: 0.15
34+
version: 0.16

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
from setuptools import find_packages, setup
7070

7171

72-
__version__ = "0.16.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)
72+
__version__ = "0.16.0" # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
7373

7474
REQUIRED_PKGS = [
7575
"accelerate>=0.34.0",

trl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
__version__ = "0.16.0.dev0"
15+
__version__ = "0.16.0"
1616

1717
from typing import TYPE_CHECKING
1818

0 commit comments

Comments
 (0)