Skip to content

Commit

Permalink
Release version 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Feb 23, 2017
1 parent 0151cbf commit d280469
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,14 @@ Release History
- Bugfixes
- Documentation
1.1.1 (unreleased)
==================
1.2.0 (February 23, 2017)
=========================

**Improvements**

- Supports all Nengo versions from 2.1.2 to 2.3.1.
- ``nengo_ocl.Simulator`` is no longer a subclass of ``nengo.Simulator``,
reducing the chances that Nengo OCL will be affected by changes in Nengo.

1.1.0 (November 30, 2016)
=========================
Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ The requirements are the same as Nengo, with the additional Python packages
``mako`` and ``pyopencl`` (where the latter requires installing OpenCL).

General:

* Python 2.7+ or Python 3.3+ (same as Nengo)
* One or more OpenCL implementations (test with e.g. PyOpenCl)

Expand All @@ -54,6 +55,7 @@ part of installing Nengo OCL. See below for more details
on how to install OpenCL.

Python packages:

* NumPy
* nengo
* mako
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, 1, 1) # (major, minor, patch)
dev = 0
version_info = (1, 2, 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, 3, 0) # (major, minor, patch)
latest_nengo_version_info = (2, 3, 1) # (major, minor, patch)
latest_nengo_version = '.'.join(str(v) for v in latest_nengo_version_info)
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[aliases]
test = pytest

[bdist_wheel]
universal = 1

[check-manifest]
ignore =
.coveragerc
Expand Down

0 comments on commit d280469

Please sign in to comment.