From 3105f30f53ae20e4a9b9bad166ebec20cdefa2dc Mon Sep 17 00:00:00 2001 From: Antonin RAFFIN Date: Sun, 29 Sep 2019 13:45:25 +0200 Subject: [PATCH] Release 2.8.0 (#490) * Release 2.8.0 * Fix doc warning * Update changelog.rst --- docs/misc/changelog.rst | 31 ++++++++++++++++++++++++++++--- setup.py | 2 +- stable_baselines/__init__.py | 2 +- 3 files changed, 30 insertions(+), 5 deletions(-) diff --git a/docs/misc/changelog.rst b/docs/misc/changelog.rst index 5612e06900..030bbe3cef 100644 --- a/docs/misc/changelog.rst +++ b/docs/misc/changelog.rst @@ -5,8 +5,33 @@ Changelog For download links, please look at `Github release page `_. -Pre-Release 2.7.1a0 (WIP) -------------------------- + +Pre-Release 2.8.1a0 (WIP) +-------------------------- + +Breaking Changes: +^^^^^^^^^^^^^^^^^ + +New Features: +^^^^^^^^^^^^^ + +Bug Fixes: +^^^^^^^^^^ + +Deprecations: +^^^^^^^^^^^^^ + +Others: +^^^^^^^ + +Documentation: +^^^^^^^^^^^^^^ + + +Release 2.8.0 (2019-09-29) +-------------------------- + +**MPI dependency optional, new save format, ACKTR with continuous actions** Breaking Changes: ^^^^^^^^^^^^^^^^^ @@ -42,7 +67,7 @@ Bug Fixes: `Issue #430 `_. - Fix a bug when calling `logger.configure()` with MPI enabled (@keshaviyengar) - set `allow_pickle=True` for numpy>=1.17.0 when loading expert dataset -- Fix a bug when using VecCheckNan with numpy ndarray as state. `Issue #489 `_. +- Fix a bug when using VecCheckNan with numpy ndarray as state. `Issue #489 `_. (@ruifeng96150) Deprecations: ^^^^^^^^^^^^^ diff --git a/setup.py b/setup.py index 76fd513a5d..9450e9759e 100644 --- a/setup.py +++ b/setup.py @@ -140,7 +140,7 @@ license="MIT", long_description=long_description, long_description_content_type='text/markdown', - version="2.7.1a0", + version="2.8.0", ) # python setup.py sdist diff --git a/stable_baselines/__init__.py b/stable_baselines/__init__.py index 530331231e..e8b53ff51f 100644 --- a/stable_baselines/__init__.py +++ b/stable_baselines/__init__.py @@ -20,4 +20,4 @@ from stable_baselines.trpo_mpi import TRPO del mpi4py -__version__ = "2.7.1a0" +__version__ = "2.8.0"