Skip to content

Commit

Permalink
Bumps version to 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Feb 11, 2015
1 parent bc28069 commit 8c82452
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Changelog
=========

0.5.2 (???)
-----------
0.6 (2015-02-11)
----------------

Bugfixes:
* Fixes `debug` log messages not being printed
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
# built documents.
#
# The short X.Y version.
version = '0.5.1'
version = '0.6'
# The full version, including alpha/beta/rc tags.
release = '0.5.1'
release = '0.6'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
4 changes: 2 additions & 2 deletions reprounzip-docker/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,14 @@
with open('README.rst') as fp:
description = fp.read()
setup(name='reprounzip-docker',
version='0.5.1',
version='0.6',
packages=['reprounzip', 'reprounzip.unpackers'],
entry_points={
'reprounzip.unpackers': [
'docker = reprounzip.unpackers.docker:setup']},
namespace_packages=['reprounzip', 'reprounzip.unpackers'],
install_requires=[
'reprounzip>=0.5.1',
'reprounzip>=0.6',
'rpaths>=0.8'],
description="Allows the ReproZip unpacker to create Docker containers",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
Expand Down
4 changes: 2 additions & 2 deletions reprounzip-vagrant/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
with open('README.rst') as fp:
description = fp.read()
setup(name='reprounzip-vagrant',
version='0.5.1',
version='0.6',
packages=['reprounzip', 'reprounzip.unpackers',
'reprounzip.unpackers.vagrant'],
entry_points={
'reprounzip.unpackers': [
'vagrant = reprounzip.unpackers.vagrant:setup']},
namespace_packages=['reprounzip', 'reprounzip.unpackers'],
install_requires=[
'reprounzip>=0.5.1',
'reprounzip>=0.6',
'rpaths>=0.8',
'paramiko',
'scp'],
Expand Down
4 changes: 2 additions & 2 deletions reprounzip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
if sys.version_info < (2, 7):
req.append('argparse')
setup(name='reprounzip',
version='0.5.1',
version='0.6',
packages=['reprounzip', 'reprounzip.unpackers',
'reprounzip.unpackers.common', 'reprounzip.plugins'],
entry_points={
Expand All @@ -32,7 +32,7 @@
namespace_packages=['reprounzip', 'reprounzip.unpackers'],
install_requires=req,
extras_require={
'all': ['reprounzip-vagrant>=0.5', 'reprounzip-docker>=0.5']},
'all': ['reprounzip-vagrant>=0.6', 'reprounzip-docker>=0.6']},
description="Linux tool enabling reproducible experiments (unpacker)",
author="Remi Rampin, Fernando Chirigati, Dennis Shasha, Juliana Freire",
author_email='reprozip-users@vgc.poly.edu',
Expand Down
2 changes: 1 addition & 1 deletion reprozip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
if sys.version_info < (2, 7):
req.append('argparse')
setup(name='reprozip',
version='0.5.1',
version='0.6',
ext_modules=[pytracer],
packages=['reprozip', 'reprozip.tracer'],
entry_points={'console_scripts': [
Expand Down
2 changes: 1 addition & 1 deletion scripts/conda/reprounzip-docker/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ requirements:

run:
- python
- reprounzip >=0.5.1
- reprounzip >=0.6
- rpaths >=0.8

test:
Expand Down
2 changes: 1 addition & 1 deletion scripts/conda/reprounzip-vagrant/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ requirements:

run:
- python
- reprounzip >=0.5.1
- reprounzip >=0.6
- rpaths >=0.8
- paramiko
- scp
Expand Down
2 changes: 1 addition & 1 deletion scripts/macos/ReproUnzip.pkgproj
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@
<key>OVERWRITE_PERMISSIONS</key>
<false/>
<key>VERSION</key>
<string>0.5.1</string>
<string>0.6</string>
</dict>
<key>UUID</key>
<string>D5E9C540-1489-4E0E-A914-B81FB6DCED9C</string>
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows/reprounzip.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

[Setup]
AppName=ReproUnzip
AppVerName=ReproUnzip 0.5.1
AppVerName=ReproUnzip 0.6
OutputBaseFilename=reprounzip-setup
DefaultGroupName=ReproZip
DefaultDirName={pf}\ReproUnzip
Expand Down

0 comments on commit 8c82452

Please sign in to comment.