Skip to content

Commit

Permalink
Release v3.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed Apr 2, 2020
1 parent 9de8187 commit ace6114
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Release history
- Deprecated
- Removed
3.1.1 (unreleased)
------------------
3.2.0 (April 2, 2020)
---------------------

**Added**

Expand Down
4 changes: 2 additions & 2 deletions nengo_dl/simulator.py
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,7 @@ def save_params(self, path, include_state=False, include_non_trainable=None):
include_state : bool
If True (default False) also save the internal simulation state.
.. versionchanged:: 3.1.1
.. versionchanged:: 3.2.0
Renamed from ``include_non_trainable`` to ``include_state``.
Notes
Expand Down Expand Up @@ -1229,7 +1229,7 @@ def load_params(self, path, include_state=False, include_non_trainable=None):
include_state : bool
If True (default False) also save the internal simulation state.
.. versionchanged:: 3.1.1
.. versionchanged:: 3.2.0
Renamed from ``include_non_trainable`` to ``include_state``.
Notes
Expand Down
6 changes: 3 additions & 3 deletions nengo_dl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
import warnings

name = "nengo-dl"
version_info = (3, 1, 1) # (major, minor, patch)
dev = 0 # set to None for releases
version_info = (3, 2, 0) # (major, minor, patch)
dev = None # set to None for releases

version = "{v}{dev}".format(
v=".".join(str(v) for v in version_info),
Expand All @@ -28,7 +28,7 @@
# for release versions of nengo-dl, this should be the latest released
# nengo version. for dev versions of nengo-dl, this should be the current
# nengo dev version.
latest_nengo_version = (3, 1, 0)
latest_nengo_version = (3, 0, 0)

if nengo.version.version_info < minimum_nengo_version: # pragma: no cover
raise ValueError(
Expand Down

0 comments on commit ace6114

Please sign in to comment.