Skip to content

Commit

Permalink
Bump version: 2.1.0-dev → 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mgk committed Dec 6, 2015
1 parent b097064 commit 82e5288
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 4 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,15 @@ This project uses [Semantic Versioning](http://semver.org/).

## *Unreleased*
### Added
- stuff

### Changed
- things

### Fixed
- bugs
## [2.1.0](https://github.com/mgk/thingpin/releases/tag/v2.1.0) - [2015-12-06]
### Added
- reconnect to Adafruit when disconnected
- install script that uses .deb package
- installs the thingpin python package
Expand Down
2 changes: 1 addition & 1 deletion Makefile
@@ -1,4 +1,4 @@
VERSION = 2.1.0-dev
VERSION = 2.1.0
NAME = thingpin
DEB_PACKAGE = dist/$(NAME)_$(VERSION)_all.deb

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -32,7 +32,7 @@

setup(
name='thingpin',
version='2.1.0-dev',
version='2.1.0',
description='Raspberry Pi pin monitor that reports to AWS IoT',
long_description=__doc__,
url='https://github.com/mgk/thingpin/blob/master/README.md',
Expand Down
2 changes: 1 addition & 1 deletion src/misc/.bumpversion.cfg
@@ -1,7 +1,7 @@
[bumpversion]
commit = True
tag = True
current_version = 2.1.0-dev
current_version = 2.1.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+))?
serialize =
{major}.{minor}.{patch}-{release}
Expand Down
2 changes: 1 addition & 1 deletion src/thingpin/__init__.py
@@ -1 +1 @@
__version__ = '2.1.0-dev'
__version__ = '2.1.0'

0 comments on commit 82e5288

Please sign in to comment.