Skip to content

Commit

Permalink
Release version 2.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tbekolay committed Jun 9, 2018
1 parent 0c09550 commit 6d3ce42
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions CHANGES.rst
Expand Up @@ -19,8 +19,8 @@ Release History
- Removed
- Fixed
2.7.1 (unreleased)
==================
2.8.0 (June 9, 2018)
====================

**Added**

Expand Down
9 changes: 4 additions & 5 deletions MANIFEST.in
@@ -1,6 +1,6 @@
global-include *.py
include *.rst
include *.sh
global-include *.sh
include *.txt
include *.yml
recursive-include nengo *.rst
Expand All @@ -10,18 +10,17 @@ recursive-include nengo *.txt
include MANIFEST.in

# Directories to include
graft benchmarks
graft docs
graft examples
graft nengo-data

# Subdirectories to exclude, if they exist
prune docs/_build
prune dist
prune .git
prune .github
prune .tox

# Patterns to exclude from any directory
global-exclude *.git*
global-exclude *.tox*
global-exclude *-checkpoint.ipynb

# Exclude all bytecode
Expand Down
4 changes: 2 additions & 2 deletions nengo/version.py
Expand Up @@ -7,8 +7,8 @@
"""

name = "nengo"
version_info = (2, 7, 1) # (major, minor, patch)
dev = 0
version_info = (2, 8, 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 '')

0 comments on commit 6d3ce42

Please sign in to comment.