Skip to content

Commit

Permalink
Bump version: 0.0.2 → 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Oct 19, 2015
1 parent d0ce5c0 commit 939666f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[bumpversion]
current_version = 0.0.2
current_version = 1.0.0
commit = True
tag = True

[bumpversion:file:setup.py]

[bumpversion:file:src/stampede.py]

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def read(*names, **kwargs):

setup(
name='stampede',
version='0.0.2',
version='1.0.0',
license='BSD',
description='Event-loop based, miniature job queue and worker that runs the task in a subprocess (via fork). When multiple requests are made for the same task they are collapsed into a single instance.',
long_description='%s\n%s' % (read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))),
Expand Down
2 changes: 1 addition & 1 deletion src/stampede.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

import signalfd

__version__ = '0.0.2'
__version__ = '1.0.0'

logger = getLogger(__name__)

Expand Down

0 comments on commit 939666f

Please sign in to comment.