Skip to content

Commit

Permalink
Release v3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss authored and tbekolay committed May 28, 2021
1 parent af78d9a commit a3ad936
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .nengobones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -333,4 +333,4 @@ version_py:
major: 3
minor: 4
patch: 1
release: false
release: true
2 changes: 1 addition & 1 deletion .templates/pkg/version.py.template
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else:
# 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, 2, 0)
latest_nengo_version = (3, 1, 0)

if nengo.version.version_info < minimum_nengo_version: # pragma: no cover
raise ValueError(
Expand Down
6 changes: 3 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ Release history
- Deprecated
- Removed
3.4.1 (unreleased)
------------------
3.4.1 (May 28, 2021)
--------------------

*Compatible with Nengo 3.0.0 - 3.2.0*
*Compatible with Nengo 3.0.0 - 3.1.0*

*Compatible with TensorFlow 2.2.0 - 2.5.0*

Expand Down
4 changes: 2 additions & 2 deletions nengo_dl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
version_info = (3, 4, 1)

name = "nengo-dl"
dev = 0
dev = None

# use old string formatting, so that this can still run in Python <= 3.5
# (since this file is parsed in setup.py, before python_requires is applied)
Expand All @@ -36,7 +36,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, 2, 0)
latest_nengo_version = (3, 1, 0)

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

0 comments on commit a3ad936

Please sign in to comment.