From 1ae2bdb4b667de8cebedd6fa6ee72792a109e5fd Mon Sep 17 00:00:00 2001 From: Jan Gosmann Date: Fri, 19 May 2017 14:44:28 -0400 Subject: [PATCH] Update the changelog for version 0.1. --- CHANGES.rst | 23 +++++++++++++++++++++-- nengo_spa/version.py | 2 +- 2 files changed, 22 insertions(+), 3 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index 00bb20c5f..f2302a8c3 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -19,10 +19,29 @@ Release History - Removed - Fixed -0.1 (unreleased) -================ + +0.1.1 (May 19, 2017) +==================== + +**Fixed** + +- Updated the 0.1 changelog. + + +0.1 (May 19, 2017) +================== Initial release of Nengo SPA with core functionality, but excluding - updates and completion the documentation, - proper integration with Nengo GUI. + +The API is still conisdered unstable in some parts of it are likely to change +in the future. + +Main features compared to the SPA implementation shipped with Nengo are: + +- neural representations have been optimized for higher accuracy, +- support for arbitrarily complex action rules, +- SPA networks can be used as normal Nengo networks, +- and SPA networks can be nested. diff --git a/nengo_spa/version.py b/nengo_spa/version.py index 33b26e78a..53aad2721 100644 --- a/nengo_spa/version.py +++ b/nengo_spa/version.py @@ -7,7 +7,7 @@ """ name = "nengo_spa" -version_info = (0, 1, 0) # (major, minor, patch) +version_info = (0, 1, 1) # (major, minor, patch) dev = None version = "{v}{dev}".format(v=".".join(str(v) for v in version_info),