Skip to content

Commit f4ec0f6

Browse files
authored
Release v2.1.0 (#1646)
1 parent ff2115d commit f4ec0f6

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
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
@@ -43,7 +44,7 @@
4344
# -- Project information -----------------------------------------------------
4445

4546
project = "Stable Baselines3"
46-
copyright = "2022, Stable Baselines3"
47+
copyright = f"2021-{datetime.date.today().year}, Stable Baselines3"
4748
author = "Stable Baselines3 Contributors"
4849

4950
# The short X.Y version

docs/misc/changelog.rst

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
33
Changelog
44
==========
55

6-
7-
Release 2.1.0a4 (WIP)
6+
Release 2.1.0 (2023-08-17)
87
--------------------------
98

9+
**Float64 actions , Gymnasium 0.29 support and bug fixes**
10+
1011
Breaking Changes:
1112
^^^^^^^^^^^^^^^^^
1213
- Removed Python 3.7 support
@@ -19,16 +20,21 @@ New Features:
1920

2021
`SB3-Contrib`_
2122
^^^^^^^^^^^^^^
23+
- Fixed MaskablePPO ignoring ``stats_window_size`` argument
24+
- Added Python 3.11 support
2225

2326
`RL Zoo`_
2427
^^^^^^^^^
28+
- Upgraded to Huggingface-SB3 >= 2.3
29+
- Added Python 3.11 support
30+
2531

2632
Bug Fixes:
2733
^^^^^^^^^^
2834
- Relaxed check in logger, that was causing issue on Windows with colorama
2935
- Fixed off-policy algorithms with continuous float64 actions (see #1145) (@tobirohrer)
30-
- Fixed env_checker.py warning messages for out of bounds in complex observation spaces (@Gabo-Tor)
31-
36+
- Fixed ``env_checker.py`` warning messages for out of bounds in complex observation spaces (@Gabo-Tor)
37+
3238
Deprecations:
3339
^^^^^^^^^^^^^
3440

stable_baselines3/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.0a4
1+
2.1.0

0 commit comments

Comments
 (0)