Skip to content

Commit

Permalink
Release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jgosmann committed May 18, 2018
1 parent 732a580 commit 52cab4e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
9 changes: 7 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Release History
- Fixed
0.4.0 (unreleased)
==================
0.4.0 (May 17, 2018)
====================

This release increases the minimum required Nengo version to Nengo 2.7
(previously Nengo 2.4).
Expand All @@ -31,6 +31,11 @@ This release increases the minimum required Nengo version to Nengo 2.7
- Added documentation and build tools for the documentation.
(`#68 <https://github.com/nengo/nengo_spa/pull/68>`_)

**Changed**

- This release introduces a new syntax for SPA action rules.
(`#114 <https://github.com/nengo/nengo_spa/pull/114>`_)

**Remove**

- Unnecessary ``vocab`` argument from ``Transcode``.
Expand Down
4 changes: 2 additions & 2 deletions nengo_spa/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"""

name = "nengo_spa"
version_info = (0, 3, 2) # (major, minor, patch)
dev = 0
version_info = (0, 4, 0) # (major, minor, patch)
dev = None

version = "{v}{dev}".format(v=".".join(str(v) for v in version_info),
dev="" if dev is None else ".dev{:d}".format(dev))

0 comments on commit 52cab4e

Please sign in to comment.