Skip to content

Commit

Permalink
version bump + change log update
Browse files Browse the repository at this point in the history
  • Loading branch information
hill-a committed Oct 2, 2018
1 parent ac5e9a4 commit 83e78d1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 8 additions & 3 deletions docs/misc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,20 @@ Changelog

For download links, please look at `Github release page <https://github.com/hill-a/stable-baselines/releases>`_.

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)

Expand Down
2 changes: 1 addition & 1 deletion stable_baselines/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 83e78d1

Please sign in to comment.