Skip to content

Commit 3105f30

Browse files
authored
Release 2.8.0 (#490)
* Release 2.8.0 * Fix doc warning * Update changelog.rst
1 parent f6ab57c commit 3105f30

File tree

3 files changed

+30
-5
lines changed

3 files changed

+30
-5
lines changed

docs/misc/changelog.rst

+28-3
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,33 @@ Changelog
55

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

8-
Pre-Release 2.7.1a0 (WIP)
9-
-------------------------
8+
9+
Pre-Release 2.8.1a0 (WIP)
10+
--------------------------
11+
12+
Breaking Changes:
13+
^^^^^^^^^^^^^^^^^
14+
15+
New Features:
16+
^^^^^^^^^^^^^
17+
18+
Bug Fixes:
19+
^^^^^^^^^^
20+
21+
Deprecations:
22+
^^^^^^^^^^^^^
23+
24+
Others:
25+
^^^^^^^
26+
27+
Documentation:
28+
^^^^^^^^^^^^^^
29+
30+
31+
Release 2.8.0 (2019-09-29)
32+
--------------------------
33+
34+
**MPI dependency optional, new save format, ACKTR with continuous actions**
1035

1136
Breaking Changes:
1237
^^^^^^^^^^^^^^^^^
@@ -42,7 +67,7 @@ Bug Fixes:
4267
`Issue #430 <https://github.com/hill-a/stable-baselines/issues/430>`_.
4368
- Fix a bug when calling `logger.configure()` with MPI enabled (@keshaviyengar)
4469
- set `allow_pickle=True` for numpy>=1.17.0 when loading expert dataset
45-
- Fix a bug when using VecCheckNan with numpy ndarray as state. `Issue #489 <https://github.com/hill-a/stable-baselines/issues/489>`_.
70+
- Fix a bug when using VecCheckNan with numpy ndarray as state. `Issue #489 <https://github.com/hill-a/stable-baselines/issues/489>`_. (@ruifeng96150)
4671

4772
Deprecations:
4873
^^^^^^^^^^^^^

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@
140140
license="MIT",
141141
long_description=long_description,
142142
long_description_content_type='text/markdown',
143-
version="2.7.1a0",
143+
version="2.8.0",
144144
)
145145

146146
# python setup.py sdist

stable_baselines/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
from stable_baselines.trpo_mpi import TRPO
2121
del mpi4py
2222

23-
__version__ = "2.7.1a0"
23+
__version__ = "2.8.0"

0 commit comments

Comments
 (0)