Skip to content

Commit

Permalink
Release version 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Jun 5, 2018
1 parent f3aecf2 commit 720b64e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
10 changes: 8 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,16 @@ Release history
- Removed
- Fixed
0.2.1 (unreleased)
==================
0.3.0 (June 4, 2018)
====================

**Changed**

- Submodules are no longer automatically imported into the
``nengo_extras`` namespace, as it can be difficult to install
requirements for the various tools in Nengo Extras.
(`#77 <https://github.com/nengo/nengo-extras/issues/77>`_,
`#78 <https://github.com/nengo/nengo-extras/pull/78>`_)

0.2.0 (May 31, 2018)
====================
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, 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 720b64e

Please sign in to comment.