From 7709989603e88d28419bb936c46d1030a0aefaf3 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sat, 7 Dec 2019 14:58:10 +0000 Subject: [PATCH] Bump version --- README.md | 2 +- cibuildwheel/__init__.py | 2 +- docs/setup.md | 16 ++++++++-------- setup.cfg | 2 +- setup.py | 2 +- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/README.md b/README.md index ba3c99fc..5c77af6c 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ env: # Note: TWINE_PASSWORD is set in Travis settings install: - - python -m pip install twine cibuildwheel==1.0.0 + - python -m pip install twine cibuildwheel==1.1.0 script: # build the wheels, put them into './wheelhouse' diff --git a/cibuildwheel/__init__.py b/cibuildwheel/__init__.py index 1f356cc5..1a72d32e 100644 --- a/cibuildwheel/__init__.py +++ b/cibuildwheel/__init__.py @@ -1 +1 @@ -__version__ = '1.0.0' +__version__ = '1.1.0' diff --git a/docs/setup.md b/docs/setup.md index 05a4523c..bcb1542f 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -15,7 +15,7 @@ jobs: - task: UsePythonVersion@0 - bash: | python -m pip install --upgrade pip - pip install cibuildwheel==1.0.0 + pip install cibuildwheel==1.1.0 cibuildwheel --output-dir wheelhouse . - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'wheelhouse'} @@ -25,7 +25,7 @@ jobs: - task: UsePythonVersion@0 - bash: | python -m pip install --upgrade pip - pip install cibuildwheel==1.0.0 + pip install cibuildwheel==1.1.0 cibuildwheel --output-dir wheelhouse . - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'wheelhouse'} @@ -37,7 +37,7 @@ jobs: displayName: Install Visual C++ for Python 2.7 - bash: | python -m pip install --upgrade pip - pip install cibuildwheel==1.0.0 + pip install cibuildwheel==1.1.0 cibuildwheel --output-dir wheelhouse . - task: PublishBuildArtifacts@1 inputs: {pathtoPublish: 'wheelhouse'} @@ -75,7 +75,7 @@ env: # Note: TWINE_PASSWORD is set in Travis settings install: - - python -m pip install twine cibuildwheel==1.0.0 + - python -m pip install twine cibuildwheel==1.1.0 script: # build the wheels, put them into './wheelhouse' @@ -107,7 +107,7 @@ jobs: - run: name: Build the Linux wheels. command: | - pip install --user cibuildwheel==1.0.0 + pip install --user cibuildwheel==1.1.0 cibuildwheel --output-dir wheelhouse - store_artifacts: path: wheelhouse/ @@ -121,7 +121,7 @@ jobs: - run: name: Build the OS X wheels. command: | - pip install --user cibuildwheel==1.0.0 + pip install --user cibuildwheel==1.1.0 cibuildwheel --output-dir wheelhouse - store_artifacts: path: wheelhouse/ @@ -153,10 +153,10 @@ image: - Visual Studio 2015 build_script: # windows - - cmd: pip install cibuildwheel==1.0.0 + - cmd: pip install cibuildwheel==1.1.0 - cmd: cibuildwheel --output-dir wheelhouse # linux - - sh: "${HOME}/.localpython3.7.4/bin/python3 -m pip install cibuildwheel==1.0.0" + - sh: "${HOME}/.localpython3.7.4/bin/python3 -m pip install cibuildwheel==1.1.0" - sh: "${HOME}/.localpython3.7.4/bin/python3 -m cibuildwheel --output-dir wheelhouse" artifacts: - path: "wheelhouse\\*.whl" diff --git a/setup.cfg b/setup.cfg index 25a8cd06..42b782c4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.0.0 +current_version = 1.1.0 commit = True tag = True message = Bump version diff --git a/setup.py b/setup.py index e1124527..b521a6f5 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ with io.open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: setup( name='cibuildwheel', - version='1.0.0', + version='1.1.0', install_requires=['bashlex!=0.13'], description="Build Python wheels on CI with minimal configuration.", long_description=long_description,