From b8526ab244fc5a65ca5d7df6957a037444d10023 Mon Sep 17 00:00:00 2001 From: Dan Ryan Date: Sun, 23 Sep 2018 13:59:48 -0400 Subject: [PATCH] Release 0.1.2 --- CHANGELOG.rst | 9 +++++++++ news/5.bugfix | 1 - src/mork/__init__.py | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) delete mode 100644 news/5.bugfix diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 726fda2..4db646a 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,12 @@ +0.1.2 (2018-09-23) +================== + +Bug Fixes +--------- + +- Fixed an issue which caused failures when generating ``VirtualEnv.sys_path`` due to passing of ``posixpath`` instances to normalization methods expecting strings. `#5 `_ + + 0.1.1 (2018-09-23) ================== diff --git a/news/5.bugfix b/news/5.bugfix deleted file mode 100644 index ec5540a..0000000 --- a/news/5.bugfix +++ /dev/null @@ -1 +0,0 @@ -Fixed an issue which caused failures when generating ``VirtualEnv.sys_path`` due to passing of ``posixpath`` instances to normalization methods expecting strings. diff --git a/src/mork/__init__.py b/src/mork/__init__.py index 6d64dc0..1056202 100644 --- a/src/mork/__init__.py +++ b/src/mork/__init__.py @@ -3,6 +3,6 @@ from __future__ import absolute_import, unicode_literals from .virtualenv import VirtualEnv -__version__ = '0.1.2.dev0' +__version__ = '0.1.2' __all__ = ["VirtualEnv"]