From feca4968c427032ae513c2ba84728cea7ed043ff Mon Sep 17 00:00:00 2001 From: Ian Cordasco Date: Wed, 16 Dec 2015 17:34:46 -0600 Subject: [PATCH] Release v1.6.5 Bump requests-toolbelt dependency to be >= 0.5.1 to account for https://github.com/sigmavirus24/requests-toolbelt/issues/117 Closes #155 --- docs/changelog.rst | 5 +++++ setup.py | 2 +- twine/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/docs/changelog.rst b/docs/changelog.rst index e96519c8..d16cada5 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -4,6 +4,11 @@ Changelog ========= +* :release:`1.6.5 <2015-12-16>` + + * :bug:`155` Bump requests-toolbelt version to ensure we avoid + ConnectionErrors + * :release:`1.6.4 <2015-10-27>` * :bug:`145` Paths with hyphens in them break the Wheel regular expression. diff --git a/setup.py b/setup.py index 6053a66c..2af1dccd 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ install_requires = [ "pkginfo >= 1.0", "requests >= 2.3.0", - "requests-toolbelt >= 0.4.0", + "requests-toolbelt >= 0.5.1", "setuptools >= 0.7.0", ] diff --git a/twine/__init__.py b/twine/__init__.py index e8f83e47..25490022 100644 --- a/twine/__init__.py +++ b/twine/__init__.py @@ -23,7 +23,7 @@ __summary__ = "Collection of utilities for interacting with PyPI" __uri__ = "https://github.com/pypa/twine" -__version__ = "1.6.4" +__version__ = "1.6.5" __author__ = "Donald Stufft and individual contributors" __email__ = "donald@stufft.io"