From d3aca52d748f95c50c9f4c9448cde4eeb0526749 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sat, 25 Aug 2018 21:10:10 -0400 Subject: [PATCH] Release v1.1.3 --- CHANGELOG.rst | 9 +++++++++ news/49.bugfix | 1 - src/requirementslib/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 news/49.bugfix diff --git a/CHANGELOG.rst b/CHANGELOG.rst index ee994d75..9ec1871a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +1.1.3 (2018-08-25) +================== + +Bug Fixes +--------- + +- Fixed a bug which caused wheel requirements to include specifiers in ``Requirement.as_line()`` output, preventing installation when passing this output to pip. #49 + + 1.1.2 (2018-08-25) ================== diff --git a/news/49.bugfix b/news/49.bugfix deleted file mode 100644 index a685f17e..00000000 --- a/news/49.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug which caused wheel requirements to include specifiers in ``Requirement.as_line()`` output, preventing installation when passing this output to pip. diff --git a/src/requirementslib/__init__.py b/src/requirementslib/__init__.py index e469ed81..7147e1f9 100644 --- a/src/requirementslib/__init__.py +++ b/src/requirementslib/__init__.py @@ -1,5 +1,5 @@ # -*- coding=utf-8 -*- -__version__ = '1.1.3.dev0' +__version__ = '1.1.3' from .exceptions import RequirementError