Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
drasmuss committed May 12, 2017
1 parent 4460a33 commit f4b075a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 5 deletions.
7 changes: 5 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,15 @@ Release History
- Removed
- Fixed
0.3.1 (unreleased)
------------------
0.3.1 (May 12, 2017)
--------------------

**Added**

- Added more documentation on Simulator arguments

**Changed**

- Improved efficiency of tree_planner, made it the new default planner

**Fixed**
Expand Down
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@ include *.txt
recursive-include docs *.css
recursive-include docs *.py
recursive-include docs *.rst

prune docs/_build
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ NengoDL: Deep learning integration for Nengo
NengoDL is a simulator for `Nengo <https://pythonhosted.org/nengo/>`_ models.
That means it takes a Nengo network as input, and allows the user to simulate
that network using some underlying computational framework (in this case,
TensorFlow).
`TensorFlow <https://www.tensorflow.org/>`_).

In practice, what that means is that the code for constructing a Nengo model
is exactly the same as it would be for the standard Nengo simulator. All that
Expand Down
2 changes: 1 addition & 1 deletion docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Introduction
NengoDL is a simulator for `Nengo <https://pythonhosted.org/nengo/>`_ models.
That means it takes a Nengo network as input, and allows the user to simulate
that network using some underlying computational framework (in this case,
TensorFlow).
`TensorFlow <https://www.tensorflow.org/>`_).

In practice, what that means is that the code for constructing a Nengo model
is exactly the same as it would be for the standard Nengo simulator. All that
Expand Down
2 changes: 1 addition & 1 deletion nengo_dl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

name = "nengo_dl"
version_info = (0, 3, 1) # (major, minor, patch)
dev = True
dev = False

version = "{v}{dev}".format(v='.'.join(str(v) for v in version_info),
dev='.dev0' if dev else '')

0 comments on commit f4b075a

Please sign in to comment.