From 96da534f0b7ca1eb4983edb560ebe7386a4da477 Mon Sep 17 00:00:00 2001 From: Todd Sifleet Date: Wed, 25 Apr 2018 12:22:09 -0700 Subject: [PATCH] bump to version 1.4.0 --- CHANGES.rst | 5 +++++ doubles/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.rst b/CHANGES.rst index ea13c03..a0f4241 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,6 +1,11 @@ Changelog ========= +1.4.0 (2018-4-25) +---------------- + +- Fix bug in unsatisfied `with_args_validator` exceptions. Note this may cause some tests being run with the `unittest` runner that used to pass to fail. + 1.3.2 (2018-4-17) ---------------- diff --git a/doubles/__init__.py b/doubles/__init__.py index 568aaa7..ca5e04e 100644 --- a/doubles/__init__.py +++ b/doubles/__init__.py @@ -1,4 +1,4 @@ -__version__ = '1.3.2' +__version__ = '1.4.0' from doubles.class_double import ClassDouble # noqa from doubles.instance_double import InstanceDouble # noqa