Skip to content

Commit

Permalink
Bump version to 1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
remram44 committed Feb 6, 2023
1 parent d45d381 commit ca5f7a5
Show file tree
Hide file tree
Showing 15 changed files with 17 additions and 17 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
@@ -1,8 +1,8 @@
Changelog
=========

1.2 (???)
---------
1.2 (2023-02-06)
----------------

Bugfixes:
* Don't mark symlinks as input files
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -65,7 +65,7 @@
# built documents.
#
# The short X.Y version.
version = u'1.1'
version = u'1.2'
# The full version, including alpha/beta/rc tags.
release = u'1.0'

Expand Down
2 changes: 1 addition & 1 deletion reprounzip-docker/setup.py
Expand Up @@ -11,7 +11,7 @@
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-docker',
version='1.1',
version='1.2',
packages=['reprounzip', 'reprounzip.unpackers'],
entry_points={
'reprounzip.unpackers': [
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-qt/reprounzip_qt/__init__.py
@@ -1 +1 @@
__version__ = '1.1'
__version__ = '1.2'
2 changes: 1 addition & 1 deletion reprounzip-qt/setup.py
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.1',
version='1.2',
packages=['reprounzip_qt', 'reprounzip_qt.gui'],
package_data={'reprounzip_qt': ['icon.png']},
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-vagrant/setup.py
Expand Up @@ -11,7 +11,7 @@
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprounzip-vagrant',
version='1.1',
version='1.2',
packages=['reprounzip', 'reprounzip.unpackers',
'reprounzip.unpackers.vagrant'],
entry_points={
Expand Down
2 changes: 1 addition & 1 deletion reprounzip-vistrails/setup.py
Expand Up @@ -17,7 +17,7 @@
if sys.version_info < (2, 7):
req.append('argparse')
setup(name='reprounzip-vistrails',
version='1.0.16',
version='1.2',
packages=['reprounzip', 'reprounzip.plugins'],
entry_points={
'reprounzip.plugins': [
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/main.py
Expand Up @@ -32,7 +32,7 @@
from reprozip.utils import stderr


__version__ = '1.1'
__version__ = '1.2'


logger = logging.getLogger('reprounzip')
Expand Down
2 changes: 1 addition & 1 deletion reprounzip/setup.py
Expand Up @@ -18,7 +18,7 @@
'distro',
'pyelftools']
setup(name='reprounzip',
version='1.1',
version='1.2',
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
@@ -1,7 +1,7 @@
"""Traces and packs notebook environments with ReproZip.
"""

__version__ = '1.1'
__version__ = '1.2'


def _jupyter_nbextension_paths():
Expand Down
2 changes: 1 addition & 1 deletion reprozip-jupyter/setup.py
Expand Up @@ -11,7 +11,7 @@
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='reprozip-jupyter',
version='1.1',
version='1.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
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.1'
__version__ = '1.2'
2 changes: 1 addition & 1 deletion reprozip/setup.py
Expand Up @@ -42,7 +42,7 @@
'requests',
'distro']
setup(name='reprozip',
version='1.1',
version='1.2',
ext_modules=[pytracer],
packages=['reprozip', 'reprozip.tracer'],
entry_points={
Expand Down
4 changes: 2 additions & 2 deletions scripts/macos/ReproUnzip.pkgproj
Expand Up @@ -558,7 +558,7 @@
<key>USE_HFS+_COMPRESSION</key>
<false/>
<key>VERSION</key>
<string>1.1</string>
<string>1.2</string>
</dict>
<key>TYPE</key>
<integer>0</integer>
Expand Down Expand Up @@ -1114,7 +1114,7 @@
<key>USE_HFS+_COMPRESSION</key>
<false/>
<key>VERSION</key>
<string>1.1</string>
<string>1.2</string>
</dict>
<key>TYPE</key>
<integer>0</integer>
Expand Down
2 changes: 1 addition & 1 deletion scripts/windows/reprounzip.iss
Expand Up @@ -8,7 +8,7 @@

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

0 comments on commit ca5f7a5

Please sign in to comment.