Skip to content

Commit cd6b3de

Browse files
authored
Release: v0.17 (#3356)
1 parent 36685c8 commit cd6b3de

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/tests_latest.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
steps:
2525
- name: Git checkout
2626
uses: actions/checkout@v4
27-
with: { ref: v0.16-release }
27+
with: { ref: v0.17-release }
2828

2929
- name: Set up Python 3.12
3030
uses: actions/setup-python@v5

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.16
34+
version: 0.17

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.17.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.17.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.17.0.dev0"
15+
__version__ = "0.17.0"
1616

1717
from typing import TYPE_CHECKING
1818

0 commit comments

Comments
 (0)