diff --git a/README.md b/README.md index 73f2ac1..ad7779f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ #VCR.py +![vcr.py](https://raw.github.com/kevin1024/vcrpy/config/vcr.png) + This is a Python version of [Ruby's VCR library](https://github.com/myronmarston/vcr). [![Build Status](https://secure.travis-ci.org/kevin1024/vcrpy.png?branch=master)](http://travis-ci.org/kevin1024/vcrpy) @@ -157,6 +159,10 @@ 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.2.0: Added configuration API, which lets you configure some settings + on VCR (see the README). Also, VCR no longer saves cassettes if they + haven't changed at all and supports JSON as well as YAML + (thanks @sirpengi) * 0.1.0: *backwards incompatible release - delete your old cassette files*: This release adds the ability to access the cassette to make assertions on it, as well as a major code refactor thanks to @dlecocq. It also diff --git a/setup.py b/setup.py index 7279c0b..3e5c015 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ class PyTest(TestCommand): sys.exit(errno) setup(name='vcrpy', - version='0.1.0', + version='0.2.0', description="A Python port of Ruby's VCR to make mocking HTTP easier", author='Kevin McCarthy', author_email='me@kevinmccarthy.org', diff --git a/vcr.png b/vcr.png new file mode 100644 index 0000000..a10236c Binary files /dev/null and b/vcr.png differ