diff --git a/examples/v4/plugins/test/matt.consumer.spec.ts b/examples/v4/plugins/test/matt.consumer.spec.ts index be0c9830e..43da29a14 100644 --- a/examples/v4/plugins/test/matt.consumer.spec.ts +++ b/examples/v4/plugins/test/matt.consumer.spec.ts @@ -30,7 +30,7 @@ describe('Plugins - Matt Protocol', () => { .uponReceiving('an HTTP request to /matt') .usingPlugin({ plugin: 'matt', - version: '0.0.5', + version: '0.0.7', }) .withRequest('POST', '/matt', (builder) => { builder.pluginContents('application/matt', mattRequest); @@ -73,7 +73,7 @@ describe('Plugins - Matt Protocol', () => { .addSynchronousInteraction('a MATT message') .usingPlugin({ plugin: 'matt', - version: '0.0.5', + version: '0.0.7', }) .withPluginContents(mattMessage, 'application/matt') .startTransport('matt', HOST) diff --git a/scripts/install-plugins.sh b/scripts/install-plugins.sh index fff0f181d..a96653284 100755 --- a/scripts/install-plugins.sh +++ b/scripts/install-plugins.sh @@ -47,7 +47,7 @@ if [ ! -f ~/.pact/bin/pact-plugin-cli ]; then chmod +x ~/.pact/bin/pact-plugin-cli fi -if [ ! -d ~/.pact/plugins/matt-0.0.5 ]; then +if [ ! -d ~/.pact/plugins/matt-0.0.7 ]; then echo "--- 🐿 Installing MATT plugin" - ~/.pact/bin/pact-plugin-cli install https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.0.5 + ~/.pact/bin/pact-plugin-cli install https://github.com/mefellows/pact-matt-plugin/releases/tag/v0.0.7 fi \ No newline at end of file