Skip to content

Commit

Permalink
Release version 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Oct 6, 2017
1 parent 899f217 commit 06846a0
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
13 changes: 11 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,19 @@ Release History
- Bugfixes
- Documentation
1.2.1 (unreleased)
==================
1.3.0 (October 6, 2017)
=======================

**Improvements**

- Supports recent Nengo versions, up to 2.6.0.

**Bugfixes**

- Fixed an issue in which stochastic processes would not be
fully reset on simulator reset.
- Fixed an issue in which building a model multiple times
could result in old probe data persisting.

1.2.0 (February 23, 2017)
=========================
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, 2, 1) # (major, minor, patch)
dev = 0
version_info = (1, 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 '')

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

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

0 comments on commit 06846a0

Please sign in to comment.