Skip to content

Commit

Permalink
chore: update pact-ruby-standalone to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F authored Jul 11, 2023
1 parent 7fe0c30 commit 04ab9f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ deps:
install:
@if [ ! -d pact/bin ]; then\
echo "--- 🐿 Installing Pact CLI dependencies"; \
curl -fsSL https://raw.githubusercontent.com/pact-foundation/pact-ruby-standalone/master/install.sh | tag=v2.0.1 bash -x; \
curl -fsSL https://raw.githubusercontent.com/pact-foundation/pact-ruby-standalone/master/install.sh | tag=v2.0.3 bash -x; \
fi

publish_pacts:
Expand Down
2 changes: 1 addition & 1 deletion scripts/pact.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ $downloadDir = $env:TEMP
$latestRelease = Invoke-WebRequest https://github.com/pact-foundation/pact-ruby-standalone/releases/latest -Headers @{"Accept"="application/json"}
$json = $latestRelease.Content | ConvertFrom-Json
# $tag = $json.tag_name
$tag = "v2.0.1" # TODO: Remove this when the 2.x is set to a non-prerelease version
$tag = "v2.0.3" # NOTE: pins pact-ruby-standalone to a fixed version
$latestVersion = $tag.Substring(1)
$url = "https://github.com/pact-foundation/pact-ruby-standalone/releases/download/$tag/pact-$latestVersion-windows-x86.zip"

Expand Down

0 comments on commit 04ab9f9

Please sign in to comment.