From c6e7551e87f6d94dc68ffc75bb73054695b01023 Mon Sep 17 00:00:00 2001 From: Roman Mogylatov Date: Tue, 27 Oct 2020 13:28:02 -0400 Subject: [PATCH] Bump version to 4.1.2 --- .travis.yml | 6 +++--- docs/main/changelog.rst | 4 ++++ src/dependency_injector/__init__.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index de125878..419f35e0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -69,7 +69,7 @@ jobs: - services: docker if: tag IS present env: TWINE_USERNAME=__token__ - install: python3 -m pip install cibuildwheel==1.5.1 + install: python3 -m pip install cibuildwheel>=1.5.1 script: python3 -m cibuildwheel --output-dir wheelhouse after_success: - python3 -m pip install twine @@ -78,7 +78,7 @@ jobs: if: tag IS present language: shell env: TWINE_USERNAME=__token__ - install: python3 -m pip install cibuildwheel==1.5.1 + install: python3 -m pip install cibuildwheel>=1.5.1 script: python3 -m cibuildwheel --output-dir wheelhouse after_success: - python3 -m pip install twine @@ -90,7 +90,7 @@ jobs: before_install: - choco install python --version 3.8.0 - export PATH="/c/Python38:/c/Python38/Scripts:$PATH" - install: python -m pip install cibuildwheel==1.5.1 + install: python -m pip install cibuildwheel>=1.5.1 script: python -m cibuildwheel --output-dir wheelhouse after_success: - python -m pip install twine diff --git a/docs/main/changelog.rst b/docs/main/changelog.rst index 593ff7f1..e0152302 100644 --- a/docs/main/changelog.rst +++ b/docs/main/changelog.rst @@ -7,6 +7,10 @@ that were made in every particular version. From version 0.7.6 *Dependency Injector* framework strictly follows `Semantic versioning`_ +4.1.2 +----- +Bump version of ``cibuildwheel>=1.5.1`` to resolve Windows build problem. + 4.1.1 ----- - Fix a few typos in ``Resource`` provider docs. diff --git a/src/dependency_injector/__init__.py b/src/dependency_injector/__init__.py index beb940ca..fc045f87 100644 --- a/src/dependency_injector/__init__.py +++ b/src/dependency_injector/__init__.py @@ -1,6 +1,6 @@ """Top-level package.""" -__version__ = '4.1.1' +__version__ = '4.1.2' """Version number. :type: str