From 1946ada84b52ac62f332c2d7e421c8efced13753 Mon Sep 17 00:00:00 2001 From: bethesque Date: Mon, 21 Feb 2022 06:04:51 +0000 Subject: [PATCH] fix: update standalone to 1.88.82 --- standalone/install.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/standalone/install.ts b/standalone/install.ts index 44e7baa0..65012467 100644 --- a/standalone/install.ts +++ b/standalone/install.ts @@ -3,7 +3,7 @@ import path = require('path'); import fs = require('fs'); // Get latest version from https://github.com/pact-foundation/pact-ruby-standalone/releases -export const PACT_STANDALONE_VERSION = '1.88.81'; +export const PACT_STANDALONE_VERSION = '1.88.82'; const PACT_DEFAULT_LOCATION = `https://github.com/pact-foundation/pact-ruby-standalone/releases/download/v${PACT_STANDALONE_VERSION}/`; const HTTP_REGEX = /^http(s?):\/\//;