Skip to content

Commit

Permalink
Release version 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Jun 8, 2015
1 parent ca87f05 commit 3a71b9e
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Release History
- Bugfixes
- Documentation
0.1.0 (unreleased)
==================
0.1.0 (June 8, 2015)
====================

Initial release of Nengo OpenCL!
Supports Nengo 2.0.x on Python 2.6+ and 3.3+.
17 changes: 12 additions & 5 deletions nengo_ocl/version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
"""Nengo version information.
We use semantic versioning (see http://semver.org/).
Additionally, '-dev' will be added to the version unless the code base
represents a release version. Commits for which the version doesn't have
'-dev' should be git tagged with the version.
"""

name = "nengo_ocl"
version_info = (0, 1, 0) # (major, minor, patch)
rc = None
dev = True
dev = False

version = "{0}{1}{2}".format('.'.join(str(v) for v in version_info),
'-rc{0:d}'.format(rc) if rc is not None else '',
'-dev' if dev else '')
version = "{v}{dev}".format(v='.'.join(str(v) for v in version_info),
dev='-dev' if dev else '')

0 comments on commit 3a71b9e

Please sign in to comment.