Skip to content

Commit

Permalink
Bump version: 0.1.0 → 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Aug 24, 2015
1 parent 1f81ef9 commit 94910c0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .bumpversion.cfg
@@ -1,8 +1,11 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.2.0
commit = True
tag = True

[bumpversion:file:setup.py]

[bumpversion:file:docs/conf.py]

[bumpversion:file:src/signalfd/__init__.py]

2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -24,7 +24,7 @@
year = '2015'
author = 'Ionel Cristian Mărieș'
copyright = '{0}, {1}'.format(year, author)
version = release = '0.1.0'
version = release = '0.2.0'
import sphinx_py3doc_enhanced_theme
html_theme = "sphinx_py3doc_enhanced_theme"
html_theme_path = [sphinx_py3doc_enhanced_theme.get_html_theme_path()]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -23,7 +23,7 @@ def read(*names, **kwargs):

setup(
name='signalfd',
version='0.1.0',
version='0.2.0',
license='BSD',
description='CFFI bindings for signalfd.',
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/signalfd/__init__.py
Expand Up @@ -7,7 +7,7 @@
from ._signalfd import ffi as _ffi
from ._signalfd import lib as _lib

__version__ = "0.1.0"
__version__ = "0.2.0"

SFD_CLOEXEC = _lib.SFD_CLOEXEC
SFD_NONBLOCK = _lib.SFD_NONBLOCK
Expand Down

0 comments on commit 94910c0

Please sign in to comment.