Skip to content

Commit

Permalink
Bumps version to 0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Nov 25, 2014
1 parent 3e309d0 commit d396600
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 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.4.2 (???)
-----------
0.5 (2014-11-24)
----------------

Features:
* All reprounzip plugins can be installed with `pip install reprounzip[all]`
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.4.2'
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.4.2'
release = '0.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-docker/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
with open('README.rst') as fp:
description = fp.read()
setup(name='reprounzip-docker',
version='0.4.2-dev',
version='0.5',
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 @@ -9,7 +9,7 @@
with open('README.rst') as fp:
description = fp.read()
setup(name='reprounzip-vagrant',
version='0.4.2-dev',
version='0.5',
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 @@ -10,12 +10,12 @@
with open('README.rst') as fp:
description = fp.read()
req = [
'reprounzip>=0.4.2-dev',
'reprounzip>=0.5',
'rpaths>=0.8']
if sys.version_info < (2, 7):
req.append('argparse')
setup(name='reprounzip-vistrails',
version='0.4.2-dev',
version='0.5',
packages=['reprounzip', 'reprounzip.plugins'],
entry_points={
'reprounzip.plugins': [
Expand Down
4 changes: 2 additions & 2 deletions reprounzip/reprounzip/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ def load_config(filename, canonical, File=File, Package=Package):
keys_ = set(config)
if 'version' not in keys_:
raise InvalidConfig("Missing version")
# Accepts versions from 0.2 to 0.4 inclusive
elif not LooseVersion('0.2') <= ver < LooseVersion('0.5'):
# Accepts versions from 0.2 to 0.5 inclusive
elif not LooseVersion('0.2') <= ver < LooseVersion('0.6'):
raise InvalidConfig("Unknown version")
elif not keys_.issubset(set(['version', 'runs',
'packages', 'other_files',
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from reprounzip import signals


__version__ = '0.4.2-dev'
__version__ = '0.5'


unpackers = {}
Expand Down
4 changes: 2 additions & 2 deletions reprounzip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
if sys.version_info < (2, 7):
req.append('argparse')
setup(name='reprounzip',
version='0.4.2-dev',
version='0.5',
packages=['reprounzip', 'reprounzip.unpackers', 'reprounzip.plugins'],
entry_points={
'console_scripts': [
Expand All @@ -30,7 +30,7 @@
namespace_packages=['reprounzip', 'reprounzip.unpackers'],
install_requires=req,
extras_require={
'all': ['reprounzip-vagrant>=0.4', 'reprounzip-docker>=0.4']},
'all': ['reprounzip-vagrant>=0.5', 'reprounzip-docker>=0.5']},
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/reprozip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# This file is part of ReproZip which is released under the Revised BSD License
# See file LICENSE for full license details.

__version__ = '0.4.2-dev'
__version__ = '0.5'
4 changes: 2 additions & 2 deletions reprozip/reprozip/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ def load_config(filename, canonical, File=File, Package=Package):
keys_ = set(config)
if 'version' not in keys_:
raise InvalidConfig("Missing version")
# Accepts versions from 0.2 to 0.4 inclusive
elif not LooseVersion('0.2') <= ver < LooseVersion('0.5'):
# Accepts versions from 0.2 to 0.5 inclusive
elif not LooseVersion('0.2') <= ver < LooseVersion('0.6'):
raise InvalidConfig("Unknown version")
elif not keys_.issubset(set(['version', 'runs',
'packages', 'other_files',
Expand Down
2 changes: 1 addition & 1 deletion reprozip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
if sys.version_info < (2, 7):
req.append('argparse')
setup(name='reprozip',
version='0.4.2-dev',
version='0.5',
ext_modules=[pytracer],
packages=['reprozip', 'reprozip.tracer'],
entry_points={'console_scripts': [
Expand Down

0 comments on commit d396600

Please sign in to comment.