From 183e268830e68f132f2c6cfe8e8fc9336171e984 Mon Sep 17 00:00:00 2001 From: Alexander Mohr Date: Wed, 10 Feb 2021 14:36:11 -0800 Subject: [PATCH] bump and remove travis --- .travis.yml | 64 ----------------------------------------- CHANGES.rst | 4 +++ aiobotocore/__init__.py | 2 +- 3 files changed, 5 insertions(+), 65 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 21635588..00000000 --- a/.travis.yml +++ /dev/null @@ -1,64 +0,0 @@ -language: python - -# Needed for Python 3.7 -dist: bionic - -python: - - 3.6.11 - - 3.7.8 - - 3.8.5 -# moto is incompatible with 3.5 because it relies on the key order of its url path regex rules -# - 3.5.9 - -matrix: - include: - - python: 3.7 - env: EXTRA="awscli" - - python: 3.7 - env: EXTRA="boto3" - -install: - # unfortunately pipenv check fails so often due to pyup.io/security key we need to ignore it :( - - pip install -U setuptools pip - - if ! [[ -v EXTRA ]]; then - pip install -U pipenv && - pipenv lock && - pipenv sync --dev && - (pipenv check || true) && - pipenv graph; - else - pip install codecov && - pip check && - pip freeze; - fi - -script: - - if [[ -v EXTRA ]]; then - pip install -U pipdeptree .[$EXTRA] && - pipdeptree; - else - make flake mototest; - fi -after_success: - codecov -deploy: - provider: pypi - distributions: "sdist bdist_wheel" - user: aio-libs-bot - password: - secure: sO1h+qa0JL3G5sImVzDfsX6W1Ilgz+I+EFXSfJ+O3vzqa4/M8qjVFuNrJafq59AkCG0LVdOC5gx1WSnsKmG+/Y92nQxzS43MhirgVEYKiBHQCNzlaH+Tha+JxP+reuDk6kB1oINnjuEldSfTMmNxYb+qL52Xvvjgk+Ho0XKzzMc/gBOshMNAZEPS9PUXg/CAyGYYsD/1VBjxCak4b9m8eegY0uRdKq9Cm2wUF2E9rWnYMlWRy0+wZHVaVysDeENF53rHtEVkQG9iuXM+uWhRu/288MpoVSKYzAcpQ16tr627NeW4VjWlC4LjLISRBC8sguapN1X7C6VIn/skoATe9yalxTuDmtqVgiYNW5kQWU07+g30+uvdWOCko7oJ4UoVoeHbnXe32z8rHAckXWu2hordC4exwTfAwd5iUSiAR95GfzFpbx0sCM8ahiEk62XzaiSP1RtSsGjtVxBjOA03EqzLCMGULbk5r7imFXw6+YaV5AYerk6fV0UNpMc5t8gfFFu6IxMc05eEMHypIEGgsKfp412+g5I33AjcpW4uyYf37RPPG/vMq4qlf9aVI8lNCFuDNqcnjeY3LxU/wbpOSmI0chdzSHS11M7F1NgeaVTGcQx4GvqBslSqRmNv0q1bdteMC2rVNkU0BGaBHKMIs97tUr2B6uFiswNdEsGorhY= - on: - tags: true - repo: aio-libs/aiobotocore - all_branches: true - python: 3.7 - skip_existing: true - -cache: pip - -# tags are considered branches, so we need a regex to allow for them -# https://docs.travis-ci.com/user/customizing-the-build#safelisting-or-blocklisting-branches -branches: - only: - - master - - /^\d+\.\d+\.\d+$/ diff --git a/CHANGES.rst b/CHANGES.rst index 7483a980..aba460c7 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,5 +1,9 @@ Changes ------- +1.2.1 (2021-02-10) +^^^^^^^^^^^^^^^^^^ +* verify strings are now correctly passed to aiohttp.TCPConnector #851 (thanks @FHTMitchell) + 1.2.0 (2021-01-11) ^^^^^^^^^^^^^^^^^^ * bump botocore to 1.19.52 diff --git a/aiobotocore/__init__.py b/aiobotocore/__init__.py index 6e766474..39afa02e 100644 --- a/aiobotocore/__init__.py +++ b/aiobotocore/__init__.py @@ -1,4 +1,4 @@ from .session import get_session, AioSession __all__ = ['get_session', 'AioSession'] -__version__ = '1.2.0' +__version__ = '1.2.1'