Skip to content

Commit

Permalink
Release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tcstewar committed Feb 22, 2017
1 parent 1aecf4d commit dbbc7b1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
17 changes: 14 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,21 @@ Release History
- Bugfixes
- Documentation
0.2.1 (unreleased)
==================

0.3.0 (February 22, 2017)
========================

This release is compatible with Nengo 2.1.0 and later.

- Added ability to set number of neurons in raster plots.
- Added ability to adjust synaptic filter on value plots.
- Rewritten server implementation for robustness and compatibility.
- Added tutorial files for "How to Build a Brain" book.
- Improved Selenium testing.
- Removed randomness in auto-layout algorithm.
- Better handling of messaging errors.
- Added red save icon indicator of a failed save.
- Added a "Help" link to https://forum.nengo.ai
- Removed seed changes due to creation of plots.

0.2.0 (April 28, 2016)
======================
Expand Down
4 changes: 2 additions & 2 deletions nengo_gui/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"""

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

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

0 comments on commit dbbc7b1

Please sign in to comment.