Skip to content

Commit

Permalink
Release version 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Nov 30, 2016
1 parent 02c7d5c commit 39805d8
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 7 deletions.
28 changes: 24 additions & 4 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
===============
***************
Release History
===============
***************

.. Changelog entries should follow this format:
Expand All @@ -18,9 +18,29 @@ Release History
- Bugfixes
- Documentation
1.0.1 (unreleased)
==================
1.1.0 (November 30, 2016)
=========================

**Features**

- Added support for ``RectifiedLinear`` and ``Sigmoid`` neuron types.
- Added support for arbitrary ``Process`` subclasses. Unlike the processes
that are explicitly supported like ``WhiteSignal``, these processes
may not fully utilize the OpenCL device.
- Added support for applying synaptic filters to matrices,
which is commonly done when probing connection weights.

**Improvements**

- Supports all Nengo versions from 2.1.2 to 2.3.0.
- The ``LIF`` model is now more accurate, and matches the implementation
in Nengo (see `Nengo#975 <https://github.com/nengo/nengo/pull/975>`_).
- Several operators have been optimized and should now run faster.

**Bugfixes**

- Fixed compatibility issues with Python 3,
and certain versions of NumPy and Nengo.

1.0.0 (June 6, 2016)
====================
Expand Down
6 changes: 3 additions & 3 deletions nengo_ocl/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

# --- version of this release
name = "nengo_ocl"
version_info = (1, 0, 1) # (major, minor, patch)
dev = 0
version_info = (1, 1, 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 '')

Expand All @@ -23,5 +23,5 @@
]

# --- latest Nengo version at time of release
latest_nengo_version_info = (2, 2, 0) # (major, minor, patch)
latest_nengo_version_info = (2, 3, 0) # (major, minor, patch)
latest_nengo_version = '.'.join(str(v) for v in latest_nengo_version_info)

0 comments on commit 39805d8

Please sign in to comment.