Skip to content

Commit

Permalink
Bump version: 0.5.14 → 0.5.15
Browse files Browse the repository at this point in the history
  • Loading branch information
stevearc committed Feb 17, 2016
1 parent 060e969 commit d2fc349
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.5.14
current_version = 0.5.15
tag_name = {new_version}
files = setup.py doc/conf.py dql/__init__.py bin/run_dql.py
commit = True
Expand Down
2 changes: 1 addition & 1 deletion bin/run_dql.py
Expand Up @@ -23,7 +23,7 @@
VENV_URL = ("https://pypi.python.org/packages/source/v/"
"virtualenv/virtualenv-%s.tar.gz" % VENV_VERSION)
VENV_NAME = 'dql_env'
VERSION = '0.5.14'
VERSION = '0.5.15'


def bootstrap_virtualenv(env):
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Expand Up @@ -23,7 +23,7 @@
copyright = u'2013, Steven Arcangeli'
github_user = u'mathcamp'

release = '0.5.14'
release = '0.5.15'
version = '.'.join(release.split('.')[:2])

exclude_patterns = ['_build']
Expand Down
2 changes: 1 addition & 1 deletion dql/__init__.py
Expand Up @@ -7,7 +7,7 @@
from .cli import DQLClient
from .engine import Engine, FragmentEngine

__version__ = '0.5.14'
__version__ = '0.5.15'


LOG_CONFIG = {
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -28,7 +28,7 @@
if __name__ == "__main__":
setup(
name='dql',
version='0.5.14',
version='0.5.15',
description='DynamoDB Query Language',
long_description=README + '\n\n' + CHANGES,
classifiers=[
Expand Down

0 comments on commit d2fc349

Please sign in to comment.