Skip to content

Commit

Permalink
Release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Jan 12, 2022
1 parent 16b8059 commit 6f26014
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 13 deletions.
6 changes: 6 additions & 0 deletions .nengobones.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,3 +98,9 @@ codecov_yml:
pre_commit_config_yaml: {}

pyproject_toml: {}

version_py:
major: 0
minor: 5
patch: 0
release: true
6 changes: 3 additions & 3 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Release history
- Removed
- Fixed
0.5.0 (unreleased)
==================
0.5.0 (January 12, 2022)
========================

**Added**

Expand All @@ -29,7 +29,7 @@ Release history

**Fixed**

- Updated to work with current version of Nengo. (`#94`_)
- Updated to work with more recent versions of Nengo. (`#94`_)

.. _#94: https://github.com/nengo/nengo/pull/94

Expand Down
28 changes: 18 additions & 10 deletions nengo_extras/version.py
Original file line number Diff line number Diff line change
@@ -1,16 +1,24 @@
"""nengo_extras version information.
# Automatically generated by nengo-bones, do not edit this file directly

We use semantic versioning (see http://semver.org/).
# pylint: disable=consider-using-f-string

"""NengoExtras version information.
We use semantic versioning (see http://semver.org/)
and conform to PEP440 (see https://www.python.org/dev/peps/pep-0440/).
'.devN' will be added to the version unless the code base represents
'.dev0' will be added to the version unless the code base represents
a release version. Release versions are git tagged with the version.
"""

name = "nengo_extras"
version_info = (0, 5, 0) # (major, minor, patch)
dev = 0
version_info = (0, 5, 0)

name = "nengo-extras"
dev = None

# use old string formatting, so that this can still run in Python <= 3.5
# (since this file is parsed in setup.py, before python_requires is applied)
version = ".".join(str(v) for v in version_info)
if dev is not None:
version += ".dev%d" % dev

version = "{v}{dev}".format(
v=".".join(str(v) for v in version_info),
dev=(".dev%d" % dev) if dev is not None else "",
)
copyright = "Copyright (c) 2015-2022 Applied Brain Research"

0 comments on commit 6f26014

Please sign in to comment.