Skip to content

Commit

Permalink
Bumps all but reprozip to 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed May 6, 2015
1 parent 4269f88 commit 8765da5
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Changelog
=========

0.6.3 (???)
-----------
0.6.3 (2015-05-06)
------------------

Bugfixes:
* Fixes reprounzip-vistrails failing because of reporting
* Fixes invalid escaping in VisTrails XML workflow
* Fixes reprounzip-vistrails not escaping correctly in XML in some conditions
* Fixes docker run failing to read Docker's JSON output on Python 3
* Fixes mounting too many filesystems in chroot
* Fixes reprounzip chroot mounting too many filesystems
* Fixes typo stopping reprounzip from running on unsupported distribs

Features:
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-docker/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-docker',
version='0.6',
version='0.6.3',
packages=['reprounzip', 'reprounzip.unpackers'],
entry_points={
'reprounzip.unpackers': [
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-vagrant/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-vagrant',
version='0.6',
version='0.6.3',
packages=['reprounzip', 'reprounzip.unpackers',
'reprounzip.unpackers.vagrant'],
entry_points={
Expand Down
4 changes: 2 additions & 2 deletions reprounzip-vistrails/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
req = [
'reprounzip>=0.5',
'reprounzip>=0.6',
'rpaths>=0.8']
if sys.version_info < (2, 7):
req.append('argparse')
setup(name='reprounzip-vistrails',
version='0.5.1',
version='0.6.3',
packages=['reprounzip', 'reprounzip.plugins'],
entry_points={
'reprounzip.plugins': [
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
from reprounzip.unpackers.common import UsageError


__version__ = '0.6'
__version__ = '0.6.3'


unpackers = {}
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
if sys.version_info < (2, 7):
req.append('argparse')
setup(name='reprounzip',
version='0.6',
version='0.6.3',
packages=['reprounzip', 'reprounzip.unpackers',
'reprounzip.unpackers.common', 'reprounzip.plugins'],
entry_points={
Expand Down

0 comments on commit 8765da5

Please sign in to comment.