From 0d85db711160b20fc4b717dac7ee59ba3e21e499 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 26 May 2019 12:48:43 +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 e1c96a3f..e2e10411 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ jobs: env: PIP=pip2 script: - - $PIP install cibuildwheel==0.10.2 + - $PIP install cibuildwheel==0.11.0 - cibuildwheel --output-dir wheelhouse ``` @@ -192,7 +192,7 @@ jobs: ``` build_script: - - pip install cibuildwheel==0.10.2 + - pip install cibuildwheel==0.11.0 - cibuildwheel --output-dir wheelhouse artifacts: - path: "wheelhouse\\*.whl" diff --git a/cibuildwheel/__init__.py b/cibuildwheel/__init__.py index 85b551d3..f323a57b 100644 --- a/cibuildwheel/__init__.py +++ b/cibuildwheel/__init__.py @@ -1 +1 @@ -__version__ = '0.10.2' +__version__ = '0.11.0' diff --git a/setup.cfg b/setup.cfg index 93e0e512..cdc0ffb2 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.10.2 +current_version = 0.11.0 commit = True tag = True message = Bump version diff --git a/setup.py b/setup.py index e0ae2885..44bb96fc 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ except ImportError: setup( name='cibuildwheel', - version='0.10.2', + version='0.11.0', install_requires=['bashlex!=0.13'], description="Build Python wheels on CI with minimal configuration.", long_description='For readme please see http://github.com/joerick/cibuildwheel',