Update changelog for #1184 (#1185)

This commit is contained in:
Quentin Gallouédec 2022-11-28 19:36:26 +01:00 committed by GitHub
parent e3b24829a5
commit aee0ba03c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 3 deletions

View file

@ -4,7 +4,7 @@ Changelog
==========
Release 1.7.0a2 (WIP)
Release 1.7.0a3 (WIP)
--------------------------
Breaking Changes:
@ -37,10 +37,13 @@ Others:
^^^^^^^
- Used issue forms instead of issue templates
- Fixed flake8 config to be compatible with flake8 6+
- Goal-conditioned environments are now characterized by the availability of the ``compute_reward`` method, rather than by their inheritance to ``gym.GoalEnv``
- Replaced ``CartPole-v0`` by ``CartPole-v1`` is tests
Documentation:
^^^^^^^^^^^^^^
- Updated Hugging Face Integration page (@simoninithomas)
- Changed ``env`` to ``vec_env`` when environment is vectorized
Release 1.6.2 (2022-10-10)
--------------------------

View file

@ -60,7 +60,7 @@ This example is only to demonstrate the use of the library and its functions, an
from stable_baselines3 import DQN
env = gym.make("CartPole-v0")
env = gym.make("CartPole-v1")
model = DQN("MlpPolicy", env, verbose=1)
model.learn(total_timesteps=10000, log_interval=4)

View file

@ -1 +1 @@
1.7.0a2
1.7.0a3