From c22db0d8cb0acef8a657b1a9ddf8ad148b0343f7 Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Wed, 7 Aug 2013 21:55:58 -1000 Subject: [PATCH] bump revision number since I broke backwards compat --- README.md | 4 ++-- setup.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1286b4c..3a18519 100644 --- a/README.md +++ b/README.md @@ -50,8 +50,8 @@ with vcr.use_cassette('fixtures/vcr_cassettes/synopsis.yaml') as cass: response = urllib2.urlopen('http://www.zombo.com/').read() # cass should have 1 request inside it assert len(cass) == 1 - # the request URL should be 'http://www.zombo.com/' - assert cass.requests.keys()[0].url == 'http://www.zombo.com/' + # the request host should be zombo.com + assert cass.requests.keys()[0].host == 'zombo.com' ``` diff --git a/setup.py b/setup.py index 5b345c0..7279c0b 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ class PyTest(TestCommand): sys.exit(errno) setup(name='vcrpy', - version='0.0.5', + version='0.1.0', description="A Python port of Ruby's VCR to make mocking HTTP easier", author='Kevin McCarthy', author_email='me@kevinmccarthy.org',