From e6cd86ef793d9c6b4b37516cfbe2bc91717f7a27 Mon Sep 17 00:00:00 2001 From: Antonin RAFFIN Date: Sat, 20 Oct 2018 10:14:39 +0200 Subject: [PATCH] Bump version --- docs/misc/changelog.rst | 2 +- stable_baselines/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index 93a133f8ee..100a459edb 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -5,7 +5,7 @@ Changelog For download links, please look at `Github release page `_. -Pre Release 2.1.1.a0 (WIP) +Release 2.1.1 (2018-10-20) -------------------------- - fixed MpiAdam synchronization issue in PPO1 (thanks to @brendenpetersen) issue #50 diff --git a/stable_baselines/__init__.py b/stable_baselines/__init__.py index bf07059b25..c95b2222c1 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.1.1.a0" +__version__ = "2.1.1" # patch Gym spaces to add equality functions, if not implemented