diff --git a/examples/v4/plugins/test/matt.consumer.spec.ts b/examples/v4/plugins/test/matt.consumer.spec.ts index 743a7dba9..c1e61fa27 100644 --- a/examples/v4/plugins/test/matt.consumer.spec.ts +++ b/examples/v4/plugins/test/matt.consumer.spec.ts @@ -32,7 +32,7 @@ const { expect } = chai; .uponReceiving('an HTTP request to /matt') .usingPlugin({ plugin: 'matt', - version: '0.1.0', + version: '0.1.1', }) .withRequest('POST', '/matt', (builder) => { builder.pluginContents('application/matt', mattRequest); @@ -75,7 +75,7 @@ const { expect } = chai; .addSynchronousInteraction('a MATT message') .usingPlugin({ plugin: 'matt', - version: '0.1.0', + version: '0.1.1', }) .withPluginContents(mattMessage, 'application/matt') .startTransport('matt', HOST) diff --git a/scripts/install-plugins.sh b/scripts/install-plugins.sh index 7246f0c63..b84cf2b52 100755 --- a/scripts/install-plugins.sh +++ b/scripts/install-plugins.sh @@ -52,7 +52,7 @@ if [ ! -f ~/.pact/bin/pact-plugin-cli ]; then chmod +x ~/.pact/bin/pact-plugin-cli fi -if [ ! -d ~/.pact/plugins/matt-0.1.0 ]; then +if [ ! -d ~/.pact/plugins/matt-0.1.1 ]; then echo "--- 🐿 Installing MATT plugin" - ~/.pact/bin/pact-plugin-cli install https://github.com/you54f/pact-matt-plugin/releases/tag/v0.1.0 + ~/.pact/bin/pact-plugin-cli install https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.1.1 fi \ No newline at end of file diff --git a/src/pact.integration.spec.ts b/src/pact.integration.spec.ts index 284c20214..e2e7f5751 100644 --- a/src/pact.integration.spec.ts +++ b/src/pact.integration.spec.ts @@ -83,7 +83,7 @@ describe('V4 Pact', () => { .uponReceiving('an HTTP request to /matt') .usingPlugin({ plugin: 'matt', - version: '0.1.0', + version: '0.1.1', }) .withRequest('POST', '/matt', (builder) => { builder.pluginContents('application/matt', mattRequest); @@ -144,7 +144,7 @@ describe('V4 Pact', () => { .addSynchronousInteraction('a MATT message') .usingPlugin({ plugin: 'matt', - version: '0.1.0', + version: '0.1.1', }) .withPluginContents(mattMessage, 'application/matt') .startTransport('matt', HOST)