From 5559b18413579185cc703c667622309b4a7b1536 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Mon, 8 Oct 2018 01:02:06 -0400 Subject: [PATCH] Release v1.1.8 --- CHANGELOG.rst | 11 +++++++++++ news/73.bugfix | 1 - news/74.bugfix | 1 - src/requirementslib/__init__.py | 2 +- 4 files changed, 12 insertions(+), 3 deletions(-) delete mode 100644 news/73.bugfix delete mode 100644 news/74.bugfix diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 654e6e58..e6814320 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,14 @@ +1.1.8 (2018-10-08) +================== + +Bug Fixes +--------- + +- Fixed a bug which caused VCS URIs to build incorrectly when calling ``VCSRequirement.as_line()`` in some cases. #73 + +- Fixed bug that editable package with ref by @ is not supported correctly #74 + + 1.1.7 (2018-10-06) ================== diff --git a/news/73.bugfix b/news/73.bugfix deleted file mode 100644 index 6ae7784a..00000000 --- a/news/73.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed a bug which caused VCS URIs to build incorrectly when calling ``VCSRequirement.as_line()`` in some cases. diff --git a/news/74.bugfix b/news/74.bugfix deleted file mode 100644 index e7e4fefe..00000000 --- a/news/74.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed bug that editable package with ref by @ is not supported correctly diff --git a/src/requirementslib/__init__.py b/src/requirementslib/__init__.py index 499e9a79..20d9c177 100644 --- a/src/requirementslib/__init__.py +++ b/src/requirementslib/__init__.py @@ -1,5 +1,5 @@ # -*- coding=utf-8 -*- -__version__ = '1.1.8.dev0' +__version__ = '1.1.8' from .exceptions import RequirementError