Skip to content

Commit

Permalink
Release v3.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed Jan 26, 2023
1 parent 5c34d02 commit 0ffe4bb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .nengobones.yml
Expand Up @@ -291,4 +291,4 @@ version_py:
major: 3
minor: 6
patch: 0
release: false
release: true
2 changes: 1 addition & 1 deletion .templates/pkg/version.py.template
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
Expand Up @@ -18,8 +18,8 @@ Release history
- Deprecated
- Removed
3.6.0 (unreleased)
------------------
3.6.0 (January 26, 2023)
------------------------

*Compatible with Nengo 3.0 - 3.2*

Expand Down
4 changes: 0 additions & 4 deletions README.rst
Expand Up @@ -6,10 +6,6 @@
:target: https://pypi.org/project/nengo-dl
:alt: Python versions

.. image:: https://img.shields.io/codecov/c/github/nengo/nengo-dl/master.svg
:target: https://codecov.io/gh/nengo/nengo-dl
:alt: Test coverage

|
.. image:: https://www.nengo.ai/design/_images/nengo-dl-full-light.svg
Expand Down
4 changes: 2 additions & 2 deletions nengo_dl/version.py
Expand Up @@ -14,7 +14,7 @@
version_info = (3, 6, 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 @@ -38,7 +38,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 0ffe4bb

Please sign in to comment.