Skip to content

Commit

Permalink
Release version 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jgosmann committed Sep 17, 2018
1 parent 0bbc319 commit b5c39e8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions CHANGES.rst
Expand Up @@ -20,8 +20,8 @@ Release History
- Fixed
0.6.0 (unreleased)
==================
0.6.0 (September 17, 2018)
==========================

**Added**

Expand Down Expand Up @@ -60,11 +60,13 @@ Release History

- A number of module names have been changed for better naming consistency.
In particular,

- ``nengo_spa.actions`` to ``nengo_spa.action_selection``,
- ``nengo_spa.pointer`` to ``nengo_spa.semantic_pointer``,
- ``nengo_spa.vocab`` to ``nengo_spa.vocabulary``,
- and ``nengo_spa.modules.assoc_mem`` to
``nengo_spa.modules.associative_memory``.

(`#199 <https://github.com/nengo/nengo_spa/issues/199>`_,
`#205 <https://github.com/nengo/nengo_spa/pull/205>`_)
- Require the ``mapping`` argument for associative memories. In addition to
Expand Down
2 changes: 1 addition & 1 deletion nengo_spa/version.py
Expand Up @@ -8,7 +8,7 @@

name = "nengo_spa"
version_info = (0, 6, 0) # (major, minor, patch)
dev = 0
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 b5c39e8

Please sign in to comment.