Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 0.7.2 #13

Closed
wants to merge 2 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{".":"0.7.1"}
{".":"0.7.2"}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.7.2](https://github.com/GoogleCloudPlatform/pastures-poc-toolkit/compare/v0.7.1...v0.7.2) (2024-07-02)


### Bug Fixes

* Update README download link ([21f963f](https://github.com/GoogleCloudPlatform/pastures-poc-toolkit/commit/21f963fe0db02088d03af1ecb90a6462ebc18b22))

## 0.7.1 (2024-07-02)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ We recommend running `pasture` from a Cloud Shell environment. If you choose to
Install the binary to your `$PATH` of choice. `amd64` is currently the only supported build architecture.
<!-- x-release-please-start-version -->
```shell
sudo wget https://github.com/GoogleCloudPlatform/pastures-poc-toolkit/releases/download/0.7.1/pastures_amd64.tar.gz -O - \
sudo wget https://github.com/GoogleCloudPlatform/pastures-poc-toolkit/releases/download/v0.7.2/pastures_amd64.tar.gz -O - \
| sudo tar -zxf - -C /usr/local/bin

sudo chmod +x /usr/local/bin/pasture
Expand Down
9 changes: 8 additions & 1 deletion cmd/plow.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,14 @@ package cmd
import (
"fmt"

"github.com/spf13/cobra"
"github.com/GoogleCloudPlatform/pastures-poc-toolkit/internal/fabric"
"github.com/GoogleCloudPlatform/pastures-poc-toolkit/internal/google"
"github.com/GoogleCloudPlatform/pastures-poc-toolkit/internal/utils"
"github.com/spf13/cobra"
)

const (
seedVer = "v0.7.1" // x-release-please-version
)

var (
Expand Down Expand Up @@ -193,6 +197,9 @@ var plowCmd = &cobra.Command{
fmt.Printf("Using %s tag for Fabric FAST \n", fabricVer)
s.Repository.SetRef("refs/tags/" + fabricVer)
}
} else if s.Type == "seed" {
fmt.Printf("Using %s tag for the Pasture seed %s \n", seedVer, s.Name)
s.Repository.SetRef("refs/tags/" + seedVer)
}

fmt.Println("Cloning repository for", s.Type)
Expand Down