Skip to content

Commit

Permalink
Bump version to 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Nov 5, 2017
1 parent 3ff41ab commit 19e0fff
Show file tree
Hide file tree
Showing 13 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Changelog
=========

1.0.11 (???)
------------
1.0.11 (2017-11-05)
-------------------

Bugfixes:
* Write timestamp in config with timezone offset
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
# The short X.Y version.
version = u'1.0'
# The full version, including alpha/beta/rc tags.
release = u'1.0.10'
release = u'1.0.11'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/man/reprounzip.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for reprounzip
.\" Contact [email protected] to correct errors or typos.
.TH man 1 "4 November 2017" "1.0.10" "reprounzip man page"
.TH man 1 "4 November 2017" "1.0.11" "reprounzip man page"
.SH NAME
reprounzip \- the reproducibility unpacker
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion docs/man/reprozip.1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.\" Manpage for reprozip
.\" Contact [email protected] to correct errors or typos.
.TH man 1 "4 November 2017" "1.0.10" "reprozip man page"
.TH man 1 "4 November 2017" "1.0.11" "reprozip man page"
.SH NAME
reprozip \- the reproducibility packer
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-qt/reprounzip_qt/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.10'
__version__ = '1.0.11'
2 changes: 1 addition & 1 deletion reprounzip-qt/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-qt',
version='1.0.10',
version='1.0.11',
packages=['reprounzip_qt', 'reprounzip_qt.gui'],
package_data={'reprounzip_qt': ['icon.png']},
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
from reprounzip.unpackers.common import UsageError


__version__ = '1.0.10'
__version__ = '1.0.11'


unpackers = {}
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
'usagestats>=0.3',
'requests']
setup(name='reprounzip',
version='1.0.10',
version='1.0.11',
packages=['reprounzip', 'reprounzip.unpackers',
'reprounzip.unpackers.common', 'reprounzip.plugins'],
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion reprozip-jupyter/reprozip_jupyter/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Traces and packs notebook environments with ReproZip.
"""

__version__ = '0.1'
__version__ = '0.2'


def _jupyter_nbextension_paths():
Expand Down
2 changes: 1 addition & 1 deletion reprozip-jupyter/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='reprozip-jupyter',
version='0.1',
version='0.2',
packages=['reprozip_jupyter'],
package_data={'reprozip_jupyter': ['notebook-extension.js']},
entry_points={
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__ = '1.0.10'
__version__ = '1.0.11'
2 changes: 1 addition & 1 deletion reprozip/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
'usagestats>=0.3',
'requests']
setup(name='reprozip',
version='1.0.10',
version='1.0.11',
ext_modules=[pytracer],
packages=['reprozip', 'reprozip.tracer'],
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion scripts/conda/reprozip-jupyter/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: reprozip-jupyter
version: !!str _REPLACE_version_REPLACE_
version: !!str 0.2

source:
fn: reprozip-jupyter.tar.gz
Expand Down

0 comments on commit 19e0fff

Please sign in to comment.