From 9c03153e6cca9e2ca075e82e618644fe88d61f02 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Wed, 24 Jul 2013 18:48:33 -1000 Subject: [PATCH] Update README / version bump for new libyaml feature --- README.md | 2 ++ setup.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c31f4d9..58c4759 100644 --- a/README.md +++ b/README.md @@ -47,6 +47,8 @@ This library is a work in progress, so the API might change on you. There are probably some [bugs](https://github.com/kevin1024/vcrpy/issues?labels=bug&page=1&state=open) floating around too. ##Changelog +* 0.0.4: If you have libyaml installed, vcrpy will use the c bindings + instead. Speed up your tests! Thanks @dlecocq * 0.0.3: Add support for requests 1.2.3. Support for older versions of requests dropped (thanks @vitormazzi and @bryanhelmig) * 0.0.2: Add support for requests / urllib3 * 0.0.1: Initial Release diff --git a/setup.py b/setup.py index 97a831a..1bb3c0b 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ class PyTest(TestCommand): sys.exit(errno) setup(name='vcrpy', - version='0.0.3', + version='0.0.4', description="A Python port of Ruby's VCR to make mocking HTTP easier", author='Kevin McCarthy', author_email='me@kevinmccarthy.org',