Skip to content

Commit

Permalink
Merge pull request #11 from pact-foundation/update-mock-service
Browse files Browse the repository at this point in the history
Updated Versions of Pact Ruby applications
  • Loading branch information
matthewbalvanz-wf authored May 14, 2017
2 parents 140f583 + 9b20d36 commit 3130f9a
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
v0.1.0, 2017-03-30 -- Basic support for authoring contracts against a separately running mock service
v0.2.0, 2017-04-22 -- Pact Python manages the Pact mock service
v0.3.0, 2017-05-13 -- Upgraded Pact mock service to v2.1.0 and Pact provider verifier to v1.0.1
4 changes: 3 additions & 1 deletion e2e/contracts/test_e2e.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
from pact.provider import Provider


pact = Consumer('consumer').has_pact_with(Provider('provider'))
pact = Consumer('consumer').has_pact_with(
Provider('provider'), pact_dir='./pacts')

pact.start_service()
atexit.register(pact.stop_service)

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.2.0'
__version__ = '0.3.0'
4 changes: 2 additions & 2 deletions scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ package() {


echo "Packaging the Mock Service for distribution."
export GEM_VERSION=0.12.1
export GEM_VERSION=2.1.0
export RELEASE_VERSION=1
export PACKAGE_VERSION=${GEM_VERSION}-${RELEASE_VERSION}

Expand Down Expand Up @@ -79,7 +79,7 @@ export EXTENSION='tar.gz'
package

echo "Packaging the Verifier for distribution."
export GEM_VERSION=0.0.13
export GEM_VERSION=1.0.1
export RELEASE_VERSION=1
export PACKAGE_VERSION=${GEM_VERSION}-${RELEASE_VERSION}
export PROJECT_NAME='pact-provider-verifier'
Expand Down

0 comments on commit 3130f9a

Please sign in to comment.