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

Update references to turbine-go because of proper v2 tagging #777

Merged
merged 1 commit into from
Jun 15, 2023
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
2 changes: 1 addition & 1 deletion cmd/meroxa/turbine/golang/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
// GoGetDeps updates the latest Meroxa mods.
func GoGetDeps(l log.Logger) error {
l.StartSpinner("\t", "Getting latest turbine-go and turbine-go/running dependencies...")
cmd := exec.Command("go", "get", "-u", "github.com/meroxa/turbine-go@main")
cmd := exec.Command("go", "get", "-u", "github.com/meroxa/turbine-go/v2@latest")
output, err := cmd.CombinedOutput()
if err != nil {
l.StopSpinnerWithStatus(fmt.Sprintf("%s", string(output)), log.Failed)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ require (
require (
github.com/briandowns/spinner v1.23.0
github.com/mattn/go-shellwords v1.0.12
github.com/meroxa/turbine-core v0.0.0-20230614165646-663965381cd4
github.com/meroxa/turbine-core v0.0.0-20230614233233-044d997b9e71
github.com/stretchr/testify v1.8.4
github.com/withfig/autocomplete-tools/integrations/cobra v1.2.1
golang.org/x/mod v0.10.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -187,8 +187,8 @@ github.com/mattn/go-shellwords v1.0.12 h1:M2zGm7EW6UQJvDeQxo4T51eKPurbeFbe8WtebG
github.com/mattn/go-shellwords v1.0.12/go.mod h1:EZzvwXDESEeg03EKmM+RmDnNOPKG4lLtQsUlTZDWQ8Y=
github.com/meroxa/meroxa-go v0.0.0-20230602200008-52f4437a6a26 h1:WyDJJuELd8iDIgcwY4PscfNazQY7YRRHqwD1+Z/z2HQ=
github.com/meroxa/meroxa-go v0.0.0-20230602200008-52f4437a6a26/go.mod h1:zO5ivDagJFc+zejDNHe/GwtCvgN1zqfBIpIuSvgiUFc=
github.com/meroxa/turbine-core v0.0.0-20230614165646-663965381cd4 h1:YYBn3DBKVc4XmksDWLT43S4ELHkcRUYEBLAkCkAPlkg=
github.com/meroxa/turbine-core v0.0.0-20230614165646-663965381cd4/go.mod h1:FKlgNtdLKmoLM+qQwIOc5+yLDmB/WlBRLHKnS5qoRzY=
github.com/meroxa/turbine-core v0.0.0-20230614233233-044d997b9e71 h1:OQY0JWZzr+fw4jgysaYCw4CWlCbu5uTUhJ0dJdJrPG8=
github.com/meroxa/turbine-core v0.0.0-20230614233233-044d997b9e71/go.mod h1:W3hnKV7ClJBkDOQThEYVFYPw7UnRl73pF551H9pfyA8=
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
github.com/nirasan/go-oauth-pkce-code-verifier v0.0.0-20170819232839-0fbfe93532da h1:qiPWuGGr+1GQE6s9NPSK8iggR/6x/V+0snIoOPYsBgc=
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/modules.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ github.com/mattn/go-shellwords
## explicit; go 1.20
github.com/meroxa/meroxa-go/pkg/meroxa
github.com/meroxa/meroxa-go/pkg/mock
# github.com/meroxa/turbine-core v0.0.0-20230614165646-663965381cd4
# github.com/meroxa/turbine-core v0.0.0-20230614233233-044d997b9e71
## explicit; go 1.20
github.com/meroxa/turbine-core/lib/go/github.com/meroxa/turbine/core
github.com/meroxa/turbine-core/pkg/app
Expand Down