Skip to content

Commit 5102922

Browse files
authored
Release v2.3.0 (#236)
1 parent 13685ca commit 5102922

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
# add these directories to sys.path here. If the directory is relative to the
1212
# documentation root, use os.path.abspath to make it absolute, like shown here.
1313
#
14+
import datetime
1415
import os
1516
import sys
1617
from typing import Dict
@@ -44,7 +45,7 @@
4445
# -- Project information -----------------------------------------------------
4546

4647
project = "Stable Baselines3 - Contrib"
47-
copyright = "2023, Stable Baselines3"
48+
copyright = f"2021-{datetime.date.today().year}, Stable Baselines3"
4849
author = "Stable Baselines3 Contributors"
4950

5051
# The short X.Y version

docs/misc/changelog.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,11 @@
33
Changelog
44
==========
55

6-
Release 2.3.0a4 (WIP)
6+
Release 2.3.0 (2024-03-31)
77
--------------------------
88

9+
**New defaults hyperparameters for QR-DQN**
10+
911
Breaking Changes:
1012
^^^^^^^^^^^^^^^^^
1113
- Upgraded to Stable-Baselines3 >= 2.3.0
@@ -23,6 +25,8 @@ Breaking Changes:
2325
New Features:
2426
^^^^^^^^^^^^^
2527
- Added ``rollout_buffer_class`` and ``rollout_buffer_kwargs`` arguments to MaskablePPO
28+
- Log success rate ``rollout/success_rate`` when available for on policy algorithms
29+
2630

2731
Bug Fixes:
2832
^^^^^^^^^^

sb3_contrib/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.3.0a5
1+
2.3.0

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
packages=[package for package in find_packages() if package.startswith("sb3_contrib")],
6666
package_data={"sb3_contrib": ["py.typed", "version.txt"]},
6767
install_requires=[
68-
"stable_baselines3>=2.3.0a5,<3.0",
68+
"stable_baselines3>=2.3.0,<3.0",
6969
],
7070
description="Contrib package of Stable Baselines3, experimental code.",
7171
author="Antonin Raffin",

0 commit comments

Comments
 (0)