Skip to content

Commit

Permalink
releasing 0.5.0 (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
iheitlager authored Apr 22, 2017
1 parent 7bda3c7 commit 82468dc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[bumpversion]
current_version = 0.5.0alpha0
current_version = 0.5.0
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)((?P<release>[a-z]+)(?P<drop>\d+))?
files = data_migrator/__init__.py docs/conf.py setup.py
files = src/data_migrator/__init__.py docs/conf.py setup.py
serialize =
{major}.{minor}.{patch}{release}{drop}
{major}.{minor}.{patch}
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
### Changed
- Moving to python3 #4

### Added
- tox based build


## [0.4.7] - 2017-04-18
### Changed
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.5.0alpha0"
release = "0.5.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.5.0alpha0",
version="0.5.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/python
# -*- coding: UTF-8 -*-
__version__ = "0.5.0alpha0"
__version__ = "0.5.0"

PACKAGE_NAME = 'data_migrator'

0 comments on commit 82468dc

Please sign in to comment.