Release v1.5.0 (#64)

This commit is contained in:
Antonin RAFFIN 2022-03-25 15:04:53 +01:00 committed by GitHub
parent f5c1aaa194
commit 9d7e33d213
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 6 deletions

View File

@ -3,14 +3,13 @@
Changelog
==========
Release 1.4.1a1 (WIP)
Release 1.5.0 (2022-03-25)
-------------------------------
Breaking Changes:
^^^^^^^^^^^^^^^^^
- Switched minimum Gym version to 0.21.0.
- Upgraded to Stable-Baselines3 >= 1.4.1a1
- Upgraded to Stable-Baselines3 >= 1.5.0
New Features:
^^^^^^^^^^^^^
@ -28,7 +27,7 @@ Others:
Release 1.4.0 (2022-01-19)
-------------------------------
**Add Trust Region Policy Optimization (TRPO) and Augmented Random Search (ARS) algorithms**
**Add Trust Region Policy Optimization (TRPO) and Augmented Random Search (ARS) algorithms**
Breaking Changes:
^^^^^^^^^^^^^^^^^

View File

@ -1 +1 @@
1.4.1a1
1.5.0

View File

@ -33,6 +33,8 @@ See documentation for the full list of included features.
- [Truncated Quantile Critics (TQC)](https://arxiv.org/abs/2005.04269)
- [Quantile Regression DQN (QR-DQN)](https://arxiv.org/abs/1710.10044)
- [PPO with invalid action masking (MaskablePPO)](https://arxiv.org/abs/2006.14171)
- [Trust Region Policy Optimization (TRPO)](https://arxiv.org/abs/1502.05477)
- [Augmented Random Search (ARS)](https://arxiv.org/abs/1803.07055)
**Gym Wrappers**:
- [Time Feature Wrapper](https://arxiv.org/abs/1712.00378)
@ -63,7 +65,7 @@ setup(
packages=[package for package in find_packages() if package.startswith("sb3_contrib")],
package_data={"sb3_contrib": ["py.typed", "version.txt"]},
install_requires=[
"stable_baselines3>=1.4.1a1",
"stable_baselines3>=1.5.0",
],
description="Contrib package of Stable Baselines3, experimental code.",
author="Antonin Raffin",