Skip to content

Commit

Permalink
Release version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Nov 21, 2019
1 parent a97bf76 commit cfa5605
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Release history
- Removed
- Fixed
0.9.0 (unreleased)
==================
0.9.0 (November 20, 2019)
=========================

**Added**

Expand All @@ -42,6 +42,8 @@ Release history
- Increased minimum NengoDL version to 3.0 (and this transitively increases the minimum
TensorFlow version to 2.0).
(`#259 <https://github.com/nengo/nengo-loihi/pull/259>`__)
- Nengo Loihi is now compatible with Nengo version 3.0.0.
(`#259 <https://github.com/nengo/nengo-loihi/pull/259>`__)

**Fixed**

Expand Down
4 changes: 2 additions & 2 deletions nengo_loihi/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def info2string(info):

name = "nengo_loihi"
version_info = (0, 9, 0) # (major, minor, patch)
dev = 0
dev = None

version = "{v}{dev}".format(
v=info2string(version_info), dev=(".dev%d" % dev) if dev is not None else ""
Expand All @@ -43,5 +43,5 @@ def info2string(info):

# newest nengo version we are compatible with (set to latest released nengo
# version when releasing this repository)
latest_nengo_version_info = (3, 0, 1)
latest_nengo_version_info = (3, 0, 0)
latest_nengo_version = info2string(latest_nengo_version_info)

0 comments on commit cfa5605

Please sign in to comment.