Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Casks/g/galasactl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@
cask "galasactl" do
arch arm: "arm64", intel: "x86_64"

version "0.44.0"
version "0.45.0"
# Create the sha256 using shasum --algorithm 256 <file>
sha256 arm: "ac1d1f18a308f627fa63280d3aa8b127cc1de61c3533bf4872a44ee5972bd79c",
intel: "3d056cbf66d23ec86e348967b581a0235832fb4d8408212563486594dd623ee5"
sha256 arm: "53ba402af54e58c144e38ea2c1fb9428acb8901b9bf635db1ebd67283e6b5aa2",
intel: "0eb835950ed792e955debe1258136c5dfa0c1dc3cd895d0e3cdad0d57ceaff49"

url "https://github.com/galasa-dev/galasa/releases/download/v#{version}/galasactl-darwin-#{arch}",
verified: "github.com/galasa-dev/galasa/releases/"
Expand Down
27 changes: 27 additions & 0 deletions Casks/g/galasactl@0.45.0.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
#
# Copyright contributors to the Galasa project
#
# SPDX-License-Identifier: EPL-2.0
#

cask "galasactl@0.45.0" do
arch arm: "arm64", intel: "x86_64"

version "0.45.0"
# Create the sha256 using shasum --algorithm 256 <file>
sha256 arm: "53ba402af54e58c144e38ea2c1fb9428acb8901b9bf635db1ebd67283e6b5aa2",
intel: "0eb835950ed792e955debe1258136c5dfa0c1dc3cd895d0e3cdad0d57ceaff49"

url "https://github.com/galasa-dev/galasa/releases/download/v#{version}/galasactl-darwin-#{arch}",
verified: "github.com/galasa-dev/galasa/releases/"
name "Galasa Client"
desc "Client to launch Galasa tests on a Galasa service or locally. Version 0.45.0"
homepage "https://galasa.dev/"

livecheck do
url :url
strategy :github_latest
end

binary "galasactl-darwin-#{arch}", target: "galasactl"
end
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ brew install --no-quarantine galasactl@x.xx.x
For example:

```bash
brew install --no-quarantine galasactl@0.44.0
brew install --no-quarantine galasactl@0.45.0
```

> **Note:** The `--no-quarantine` flag is currently required because otherwise it's not possible to run the galasactl binary. See documentation about this at [https://galasa.dev](https://galasa.dev).
Expand All @@ -69,7 +69,7 @@ Use the helper script `add-version.sh` to add a new version:
For example:

```bash
./add-version.sh --version 0.44.0
./add-version.sh --version 0.45.0
```

This will:
Expand Down
2 changes: 1 addition & 1 deletion add-version.sh
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ EOF

function update_readme_example() {
h2 "Updating the example in the readme."
cat $BASEDIR/README.md | sed -E "s/[0-9]+[0-9\.]*/${version_to_add}/g" > ${BASEDIR}/temp/README1.md
cat $BASEDIR/README.md | sed -E "s/[0-9]+[.][0-9]+[.][0-9\.]*/${version_to_add}/g" > ${BASEDIR}/temp/README1.md
mv ${BASEDIR}/temp/README1.md ${BASEDIR}/README.md
success "Readme updated OK."
}
Expand Down
Loading