Skip to content

Commit

Permalink
Release version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Nov 16, 2019
1 parent dab8e34 commit 3238cdf
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
11 changes: 8 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,25 @@ Release history
- Removed
- Fixed
0.3.1 (unreleased)
==================
0.4.0 (November 15, 2019)
=========================

**Added**

- Added ``nengo_extras.simulators.RealTimeSimulator``, which will ensure that
simulations don't run faster than real time.
(`#85 <https://github.com/nengo/nengo-extras/pull/85>`_,
`#151 <https://github.com/nengo/nengo/pull/151>`_)
`#151 <https://github.com/nengo/nengo/pull/151>`_)
- Added ``nengo_extras.neurons.NumbaLIF``, which is a numba-accelerated
drop-in replacement for the ``nengo.LIF`` neuron model (requires ``numba`` to
be installed).
(`#86 <https://github.com/nengo/nengo-extras/pull/86>`_)

**Fixed**

- Fixed some Nengo 3.0.0 compatibility issues.
(`#90 <https://github.com/nengo/nengo-extras/pull/90>`_)

0.3.0 (June 4, 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, 3, 1) # (major, minor, patch)
dev = 0
version_info = (0, 4, 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 3238cdf

Please sign in to comment.