Skip to content

Commit

Permalink
Bump version to 1.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Mar 30, 2018
1 parent e3f36fb commit 7f862c2
Show file tree
Hide file tree
Showing 11 changed files with 16 additions and 12 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
Changelog
=========

1.0.12 (???)
------------
1.0.12 (2018-03-30)
-------------------

(reprozip, reprounzip-qt and reprozip-jupyter only)

Bugfixes:
* Fix some kernel/libc issuing unrecognized `openat()` calls, resulting in files missing in the trace
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.11'
release = u'1.0.12'

# 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-qt/reprounzip_qt/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.0.11'
__version__ = '1.0.12'
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.11',
version='1.0.12',
packages=['reprounzip_qt', 'reprounzip_qt.gui'],
package_data={'reprounzip_qt': ['icon.png']},
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.2'
__version__ = '0.3'


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.2',
version='0.3',
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.11'
__version__ = '1.0.12'
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.11',
version='1.0.12',
ext_modules=[pytracer],
packages=['reprozip', 'reprozip.tracer'],
entry_points={
Expand Down
2 changes: 2 additions & 0 deletions scripts/RELEASE
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Update the CHANGELOG.md file

Bump versions in setup.py files, __init__.py files, docs/conf.py, installers

Create a signed tag for the version
git tag -s 1.0.11

Expand Down
4 changes: 2 additions & 2 deletions 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>1.0.11</string>
<string>1.0.12</string>
</dict>
<key>UUID</key>
<string>D5E9C540-1489-4E0E-A914-B81FB6DCED9C</string>
Expand Down Expand Up @@ -1026,7 +1026,7 @@
<key>OVERWRITE_PERMISSIONS</key>
<false/>
<key>VERSION</key>
<string>1.0.11</string>
<string>1.0.12</string>
</dict>
<key>TYPE</key>
<integer>0</integer>
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows/reprounzip.iss
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

[Setup]
AppName=ReproUnzip
AppVerName=ReproUnzip 1.0.11
AppVerName=ReproUnzip 1.0.12
OutputBaseFilename=reprounzip-setup
DefaultGroupName=ReproUnzip
DefaultDirName={pf}\ReproUnzip
Expand Down

0 comments on commit 7f862c2

Please sign in to comment.