Skip to content

Commit

Permalink
Starting development of v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed May 31, 2018
1 parent da32b61 commit af425ad
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ Release history
- Removed
- Fixed
0.2.1 (unreleased)
==================



0.2.0 (May 31, 2018)
====================

Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ Development

To run the unit tests:

.. code-block:: bash
pytest nengo_extras [--plots]
To run the static checks:
Expand Down
4 changes: 2 additions & 2 deletions nengo_extras/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
"""

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

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 af425ad

Please sign in to comment.