From 3ef401b19efb28db6e0a73c514b935caf35a43e0 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 1 Jul 2018 21:28:28 +0100 Subject: [PATCH] Bump version --- README.md | 4 ++-- cibuildwheel/__init__.py | 2 +- setup.cfg | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index a17af3d7..7872d7ab 100644 --- a/README.md +++ b/README.md @@ -50,7 +50,7 @@ Usage env: PIP=pip2 script: - - $PIP install cibuildwheel==0.9.1 + - $PIP install cibuildwheel==0.9.2 - cibuildwheel --output-dir wheelhouse ``` @@ -60,7 +60,7 @@ Usage ``` build_script: - - pip install cibuildwheel==0.9.1 + - pip install cibuildwheel==0.9.2 - cibuildwheel --output-dir wheelhouse artifacts: - path: "wheelhouse\\*.whl" diff --git a/cibuildwheel/__init__.py b/cibuildwheel/__init__.py index 8969d496..1f047803 100644 --- a/cibuildwheel/__init__.py +++ b/cibuildwheel/__init__.py @@ -1 +1 @@ -__version__ = '0.9.1' +__version__ = '0.9.2' diff --git a/setup.cfg b/setup.cfg index 2a26f541..02a4a277 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.9.1 +current_version = 0.9.2 commit = True tag = True message = Bump version diff --git a/setup.py b/setup.py index ed724e01..bf641508 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: setup( name='cibuildwheel', - version='0.9.1', + version='0.9.2', install_requires=['bashlex'], description="Build Python wheels on CI with minimal configuration.", long_description='For readme please see http://github.com/joerick/cibuildwheel',