Skip to content

Commit fd151d2

Browse files
Releasing version v0.5.0
1 parent c085a01 commit fd151d2

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
### v0.5.0
2+
* c085a01 - Merge pull request #26 from AnObfuscator/stub-multiple-requests (Matthew Balvanz, Mon Jun 19 09:14:51 2017 -0500)
3+
* 22c0272 - Add support for stubbing multiple requests at the same time (AnObfuscator, Fri Jun 16 23:18:01 2017 -0500)
4+
15
### v0.4.1
26
* 66cf151 - Add RELEASING.md closes #18 (Matthew Balvanz, Tue May 30 22:41:06 2017 -0500)
37
* 3f61c91 - Add support for request bodies that are False in Python (Matthew Balvanz, Tue May 30 21:57:46 2017 -0500)

e2e/app.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010

1111
provider_states = {
1212
'consumer': {
13+
'a complex json blob exists': Response(
14+
status=200,
15+
response=json.dumps({'name': 'Jonas'}),
16+
headers=Headers([('Content-Type', 'application/json')])),
1317
'a simple json blob exists': Response(
1418
status=200,
1519
response=json.dumps({'name': 'Jonas'}),

pact/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77

88
__all__ = ('Consumer', 'EachLike', 'Pact', 'Provider', 'SomethingLike', 'Term')
9-
__version__ = '0.4.1'
9+
__version__ = '0.5.0'

0 commit comments

Comments
 (0)