From 83e78d1eef6863a0294f580e4794e036cc63fd6c Mon Sep 17 00:00:00 2001 From: hill-a Date: Tue, 2 Oct 2018 14:11:51 +0200 Subject: [PATCH] version bump + change log update --- docs/misc/changelog.rst | 11 ++++++++--- stable_baselines/__init__.py | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index d14ae21268..9aa4ae1b1c 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -5,15 +5,20 @@ Changelog For download links, please look at `Github release page `_. -Pre Release 2.0.1.a0 (WIP) ---------------------------- +Release 2.1.0 (2018-10-2) +------------------------- + +.. warning:: + + This version contains breaking changes for DQN policies, please read the full details **logging and bug fixes** + - added patch fix for equal function using `gym.spaces.MultiDiscrete` and `gym.spaces.MultiBinary` - fixes for DQN action_probability - re-added double DQN + refactored DQN policies **breaking changes** -- replaced `async` with `async_eigen_decomp` in ACKTR/KFAC for python 3.7 compat +- replaced `async` with `async_eigen_decomp` in ACKTR/KFAC for python 3.7 compatibility - removed action clipping for prediction of continuous actions (see issue #36) - fixed NaN issue due to clipping the continuous action in the wrong place (issue #36) diff --git a/stable_baselines/__init__.py b/stable_baselines/__init__.py index 1695259c8a..4bb665a5f4 100644 --- a/stable_baselines/__init__.py +++ b/stable_baselines/__init__.py @@ -11,7 +11,7 @@ from stable_baselines.ppo2 import PPO2 from stable_baselines.trpo_mpi import TRPO -__version__ = "2.0.1.a0" +__version__ = "2.1.0" # patch Gym spaces to add equality functions, if not implemented