Skip to content

Commit

Permalink
Release v3.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed Feb 10, 2022
1 parent 15272ed commit 0a2a47d
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 @@ -340,4 +340,4 @@ version_py:
major: 3
minor: 4
patch: 4
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.4.4 (unreleased)
------------------
3.4.4 (February 10, 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, 4, 4)

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 0a2a47d

Please sign in to comment.