Skip to content

Commit

Permalink
Release v3.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed Aug 14, 2020
1 parent b27caa0 commit bf93936
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Release history
- Deprecated
- Removed
3.3.0 (unreleased)
------------------
3.3.0 (August 14, 2020)
-----------------------

**Added**

Expand All @@ -37,7 +37,7 @@ Release history
**Changed**

- ``Simulator.evaluate`` no longer prints any information to stdout in TensorFlow
2.2 (due to a TensorFlow issue, see
2.2 in graph mode (due to a TensorFlow issue, see
https://github.com/tensorflow/tensorflow/issues/39456). Loss/metric values
will still be returned from the function as normal. (`#153`_)
- A warning will now be raised if activation types are passed to
Expand Down
2 changes: 2 additions & 0 deletions nengo_dl/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ def configure_settings(**kwargs):
run ``sim.predict`` in training mode). Set ``learning_phase=True`` to
always run the model in training mode (or ``False`` to always run in inference
mode). Set ``learning_phase=None`` to use the default behaviour.
.. versionadded:: 3.3.0
"""

# get the toplevel network
Expand Down
4 changes: 2 additions & 2 deletions nengo_dl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

name = "nengo-dl"
version_info = (3, 3, 0) # (major, minor, patch)
dev = 0 # set to None for releases
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 bf93936

Please sign in to comment.