Skip to content

Commit

Permalink
Release v3.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed May 18, 2022
1 parent 3d10f3a commit f0f35cd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .nengobones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -345,4 +345,4 @@ version_py:
major: 3
minor: 5
patch: 0
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, 1)
latest_nengo_version = (3, 2, 0)

if nengo.version.version_info < minimum_nengo_version: # pragma: no cover
raise ValueError(
Expand Down
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.5.0 (unreleased)
------------------
3.5.0 (May 18, 2022)
--------------------

*Compatible with Nengo 3.0 - 3.2*

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

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 @@ -37,7 +37,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, 1)
latest_nengo_version = (3, 2, 0)

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

0 comments on commit f0f35cd

Please sign in to comment.