Skip to content

Commit

Permalink
Bump version: 0.6.0.dev0 → 0.6.0 (#61)
Browse files Browse the repository at this point in the history
  • Loading branch information
iheitlager committed Aug 18, 2017
1 parent 2465e5a commit f634389
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.0.dev0
current_version = 0.6.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<drop>\d+))?
files = src/data_migrator/__init__.py docs/conf.py setup.py
serialize =
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# built documents.
#
# The full version, including alpha/beta/rc tags.
release = "0.6.0.dev0"
release = "0.6.0"
# The short X.Y version.
version = ".".join(release.split(".")[0:2])

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='data-migrator',
version="0.6.0.dev0",
version="0.6.0",
description='declarative data migration and transformation package',
long_description=long_description,
license='MIT',
Expand Down
2 changes: 1 addition & 1 deletion src/data_migrator/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/usr/bin/env python
# -*- coding: UTF-8 -*-
__version__ = "0.6.0.dev0"
__version__ = "0.6.0"

PACKAGE_NAME = 'data_migrator'

0 comments on commit f634389

Please sign in to comment.