mirror of
https://github.com/kevin1024/vcrpy.git
synced 2025-12-10 09:35:34 +00:00
Update README and bump version
This commit is contained in:
@@ -1,5 +1,7 @@
|
|||||||
#VCR.py
|
#VCR.py
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
This is a Python version of [Ruby's VCR library](https://github.com/myronmarston/vcr).
|
This is a Python version of [Ruby's VCR library](https://github.com/myronmarston/vcr).
|
||||||
|
|
||||||
[](http://travis-ci.org/kevin1024/vcrpy)
|
[](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.
|
There are probably some [bugs](https://github.com/kevin1024/vcrpy/issues?labels=bug&page=1&state=open) floating around too.
|
||||||
|
|
||||||
##Changelog
|
##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*:
|
* 0.1.0: *backwards incompatible release - delete your old cassette files*:
|
||||||
This release adds the ability to access the cassette to make assertions
|
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
|
on it, as well as a major code refactor thanks to @dlecocq. It also
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -19,7 +19,7 @@ class PyTest(TestCommand):
|
|||||||
sys.exit(errno)
|
sys.exit(errno)
|
||||||
|
|
||||||
setup(name='vcrpy',
|
setup(name='vcrpy',
|
||||||
version='0.1.0',
|
version='0.2.0',
|
||||||
description="A Python port of Ruby's VCR to make mocking HTTP easier",
|
description="A Python port of Ruby's VCR to make mocking HTTP easier",
|
||||||
author='Kevin McCarthy',
|
author='Kevin McCarthy',
|
||||||
author_email='me@kevinmccarthy.org',
|
author_email='me@kevinmccarthy.org',
|
||||||
|
|||||||
Reference in New Issue
Block a user