Skip to content

Commit

Permalink
Releasing version v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewbalvanz-wf committed Jun 19, 2017
1 parent c085a01 commit fd151d2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v0.5.0
* c085a01 - Merge pull request #26 from AnObfuscator/stub-multiple-requests (Matthew Balvanz, Mon Jun 19 09:14:51 2017 -0500)
* 22c0272 - Add support for stubbing multiple requests at the same time (AnObfuscator, Fri Jun 16 23:18:01 2017 -0500)

### v0.4.1
* 66cf151 - Add RELEASING.md closes #18 (Matthew Balvanz, Tue May 30 22:41:06 2017 -0500)
* 3f61c91 - Add support for request bodies that are False in Python (Matthew Balvanz, Tue May 30 21:57:46 2017 -0500)
Expand Down
4 changes: 4 additions & 0 deletions e2e/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@

provider_states = {
'consumer': {
'a complex json blob exists': Response(
status=200,
response=json.dumps({'name': 'Jonas'}),
headers=Headers([('Content-Type', 'application/json')])),
'a simple json blob exists': Response(
status=200,
response=json.dumps({'name': 'Jonas'}),
Expand Down
2 changes: 1 addition & 1 deletion pact/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@


__all__ = ('Consumer', 'EachLike', 'Pact', 'Provider', 'SomethingLike', 'Term')
__version__ = '0.4.1'
__version__ = '0.5.0'

0 comments on commit fd151d2

Please sign in to comment.