From 633632629d24c896b04e95df9cccef4d3e0c7d5e Mon Sep 17 00:00:00 2001 From: Willy Kloucek Date: Sat, 25 Sep 2021 14:37:40 +0200 Subject: [PATCH] update tooling --- .bingo/Variables.mk | 72 ++++++++++++++++----------------- .bingo/bingo.mod | 2 +- .bingo/buf.mod | 2 +- .bingo/buildifier.mod | 2 +- .bingo/flaex.mod | 2 +- .bingo/golangci-lint.mod | 2 +- .bingo/hugo.mod | 2 +- .bingo/oapi-codegen.mod | 2 +- .bingo/protoc-gen-doc.mod | 2 +- .bingo/protoc-gen-go.mod | 2 +- .bingo/protoc-gen-micro.mod | 2 +- .bingo/protoc-gen-openapiv2.mod | 2 +- .bingo/reflex.mod | 2 +- .bingo/variables.env | 24 +++++------ 14 files changed, 60 insertions(+), 60 deletions(-) diff --git a/.bingo/Variables.mk b/.bingo/Variables.mk index 94f92dab57..5224312638 100644 --- a/.bingo/Variables.mk +++ b/.bingo/Variables.mk @@ -17,23 +17,23 @@ GO ?= $(shell which go) # @echo "Running bingo" # @$(BINGO) # -BINGO := $(GOBIN)/bingo-v0.4.0 +BINGO := $(GOBIN)/bingo-v0.5.1 $(BINGO): $(BINGO_DIR)/bingo.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/bingo-v0.4.0" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=bingo.mod -o=$(GOBIN)/bingo-v0.4.0 "github.com/bwplotka/bingo" + @echo "(re)installing $(GOBIN)/bingo-v0.5.1" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=bingo.mod -o=$(GOBIN)/bingo-v0.5.1 "github.com/bwplotka/bingo" -BUF := $(GOBIN)/buf-v0.40.0 +BUF := $(GOBIN)/buf-v0.56.0 $(BUF): $(BINGO_DIR)/buf.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/buf-v0.40.0" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=buf.mod -o=$(GOBIN)/buf-v0.40.0 "github.com/bufbuild/buf/cmd/buf" + @echo "(re)installing $(GOBIN)/buf-v0.56.0" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=buf.mod -o=$(GOBIN)/buf-v0.56.0 "github.com/bufbuild/buf/cmd/buf" -BUILDIFIER := $(GOBIN)/buildifier-v0.0.0-20210227132407-f2aed9ee205d +BUILDIFIER := $(GOBIN)/buildifier-v0.0.0-20210920153738-d6daef01a1a2 $(BUILDIFIER): $(BINGO_DIR)/buildifier.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/buildifier-v0.0.0-20210227132407-f2aed9ee205d" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=buildifier.mod -o=$(GOBIN)/buildifier-v0.0.0-20210227132407-f2aed9ee205d "github.com/bazelbuild/buildtools/buildifier" + @echo "(re)installing $(GOBIN)/buildifier-v0.0.0-20210920153738-d6daef01a1a2" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=buildifier.mod -o=$(GOBIN)/buildifier-v0.0.0-20210920153738-d6daef01a1a2 "github.com/bazelbuild/buildtools/buildifier" CALENS := $(GOBIN)/calens-v0.2.0 $(CALENS): $(BINGO_DIR)/calens.mod @@ -47,17 +47,17 @@ $(FILEB0X): $(BINGO_DIR)/fileb0x.mod @echo "(re)installing $(GOBIN)/fileb0x-v1.1.4" @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=fileb0x.mod -o=$(GOBIN)/fileb0x-v1.1.4 "github.com/UnnoTed/fileb0x" -FLAEX := $(GOBIN)/flaex-v0.2.1-0.20210701123229-9d7dceed124f +FLAEX := $(GOBIN)/flaex-v0.2.0 $(FLAEX): $(BINGO_DIR)/flaex.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/flaex-v0.2.1-0.20210701123229-9d7dceed124f" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=flaex.mod -o=$(GOBIN)/flaex-v0.2.1-0.20210701123229-9d7dceed124f "github.com/owncloud/flaex" + @echo "(re)installing $(GOBIN)/flaex-v0.2.0" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=flaex.mod -o=$(GOBIN)/flaex-v0.2.0 "github.com/owncloud/flaex" -GOLANGCI_LINT := $(GOBIN)/golangci-lint-v1.37.1 +GOLANGCI_LINT := $(GOBIN)/golangci-lint-v1.42.1 $(GOLANGCI_LINT): $(BINGO_DIR)/golangci-lint.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/golangci-lint-v1.37.1" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.37.1 "github.com/golangci/golangci-lint/cmd/golangci-lint" + @echo "(re)installing $(GOBIN)/golangci-lint-v1.42.1" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.42.1 "github.com/golangci/golangci-lint/cmd/golangci-lint" GOX := $(GOBIN)/gox-v1.0.1 $(GOX): $(BINGO_DIR)/gox.mod @@ -65,11 +65,11 @@ $(GOX): $(BINGO_DIR)/gox.mod @echo "(re)installing $(GOBIN)/gox-v1.0.1" @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=gox.mod -o=$(GOBIN)/gox-v1.0.1 "github.com/mitchellh/gox" -HUGO := $(GOBIN)/hugo-v0.87.0 +HUGO := $(GOBIN)/hugo-v0.88.1 $(HUGO): $(BINGO_DIR)/hugo.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/hugo-v0.87.0" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=hugo.mod -o=$(GOBIN)/hugo-v0.87.0 "github.com/gohugoio/hugo" + @echo "(re)installing $(GOBIN)/hugo-v0.88.1" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=hugo.mod -o=$(GOBIN)/hugo-v0.88.1 "github.com/gohugoio/hugo" MUTAGEN := $(GOBIN)/mutagen-v0.11.8 $(MUTAGEN): $(BINGO_DIR)/mutagen.mod @@ -77,29 +77,29 @@ $(MUTAGEN): $(BINGO_DIR)/mutagen.mod @echo "(re)installing $(GOBIN)/mutagen-v0.11.8" @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=mutagen.mod -o=$(GOBIN)/mutagen-v0.11.8 "github.com/mutagen-io/mutagen/cmd/mutagen" -OAPI_CODEGEN := $(GOBIN)/oapi-codegen-v1.6.1 +OAPI_CODEGEN := $(GOBIN)/oapi-codegen-v1.8.2 $(OAPI_CODEGEN): $(BINGO_DIR)/oapi-codegen.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/oapi-codegen-v1.6.1" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=oapi-codegen.mod -o=$(GOBIN)/oapi-codegen-v1.6.1 "github.com/deepmap/oapi-codegen/cmd/oapi-codegen" + @echo "(re)installing $(GOBIN)/oapi-codegen-v1.8.2" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=oapi-codegen.mod -o=$(GOBIN)/oapi-codegen-v1.8.2 "github.com/deepmap/oapi-codegen/cmd/oapi-codegen" -PROTOC_GEN_DOC := $(GOBIN)/protoc-gen-doc-v1.4.1 +PROTOC_GEN_DOC := $(GOBIN)/protoc-gen-doc-v1.5.0 $(PROTOC_GEN_DOC): $(BINGO_DIR)/protoc-gen-doc.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/protoc-gen-doc-v1.4.1" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-doc.mod -o=$(GOBIN)/protoc-gen-doc-v1.4.1 "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc" + @echo "(re)installing $(GOBIN)/protoc-gen-doc-v1.5.0" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-doc.mod -o=$(GOBIN)/protoc-gen-doc-v1.5.0 "github.com/pseudomuto/protoc-gen-doc/cmd/protoc-gen-doc" -PROTOC_GEN_GO := $(GOBIN)/protoc-gen-go-v1.26.0 +PROTOC_GEN_GO := $(GOBIN)/protoc-gen-go-v1.27.1 $(PROTOC_GEN_GO): $(BINGO_DIR)/protoc-gen-go.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/protoc-gen-go-v1.26.0" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-go.mod -o=$(GOBIN)/protoc-gen-go-v1.26.0 "google.golang.org/protobuf/cmd/protoc-gen-go" + @echo "(re)installing $(GOBIN)/protoc-gen-go-v1.27.1" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-go.mod -o=$(GOBIN)/protoc-gen-go-v1.27.1 "google.golang.org/protobuf/cmd/protoc-gen-go" -PROTOC_GEN_MICRO := $(GOBIN)/protoc-gen-micro-v3.0.0-20210329103359-9b41d1bf0888 +PROTOC_GEN_MICRO := $(GOBIN)/protoc-gen-micro-v3.0.0-20210924081004-8c39b1e1204d $(PROTOC_GEN_MICRO): $(BINGO_DIR)/protoc-gen-micro.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/protoc-gen-micro-v3.0.0-20210329103359-9b41d1bf0888" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-micro.mod -o=$(GOBIN)/protoc-gen-micro-v3.0.0-20210329103359-9b41d1bf0888 "github.com/asim/go-micro/cmd/protoc-gen-micro/v3" + @echo "(re)installing $(GOBIN)/protoc-gen-micro-v3.0.0-20210924081004-8c39b1e1204d" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-micro.mod -o=$(GOBIN)/protoc-gen-micro-v3.0.0-20210924081004-8c39b1e1204d "github.com/asim/go-micro/cmd/protoc-gen-micro/v3" PROTOC_GEN_MICROWEB := $(GOBIN)/protoc-gen-microweb-v0.0.0-20210824101557-828409dbfbf9 $(PROTOC_GEN_MICROWEB): $(BINGO_DIR)/protoc-gen-microweb.mod @@ -107,15 +107,15 @@ $(PROTOC_GEN_MICROWEB): $(BINGO_DIR)/protoc-gen-microweb.mod @echo "(re)installing $(GOBIN)/protoc-gen-microweb-v0.0.0-20210824101557-828409dbfbf9" @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-microweb.mod -o=$(GOBIN)/protoc-gen-microweb-v0.0.0-20210824101557-828409dbfbf9 "github.com/owncloud/protoc-gen-microweb" -PROTOC_GEN_OPENAPIV2 := $(GOBIN)/protoc-gen-openapiv2-v2.3.0 +PROTOC_GEN_OPENAPIV2 := $(GOBIN)/protoc-gen-openapiv2-v2.6.0 $(PROTOC_GEN_OPENAPIV2): $(BINGO_DIR)/protoc-gen-openapiv2.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/protoc-gen-openapiv2-v2.3.0" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-openapiv2.mod -o=$(GOBIN)/protoc-gen-openapiv2-v2.3.0 "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2" + @echo "(re)installing $(GOBIN)/protoc-gen-openapiv2-v2.6.0" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=protoc-gen-openapiv2.mod -o=$(GOBIN)/protoc-gen-openapiv2-v2.6.0 "github.com/grpc-ecosystem/grpc-gateway/v2/protoc-gen-openapiv2" -REFLEX := $(GOBIN)/reflex-v0.3.0 +REFLEX := $(GOBIN)/reflex-v0.3.1 $(REFLEX): $(BINGO_DIR)/reflex.mod @# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. - @echo "(re)installing $(GOBIN)/reflex-v0.3.0" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=reflex.mod -o=$(GOBIN)/reflex-v0.3.0 "github.com/cespare/reflex" + @echo "(re)installing $(GOBIN)/reflex-v0.3.1" + @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=reflex.mod -o=$(GOBIN)/reflex-v0.3.1 "github.com/cespare/reflex" diff --git a/.bingo/bingo.mod b/.bingo/bingo.mod index 0e08d26de0..a40810276c 100644 --- a/.bingo/bingo.mod +++ b/.bingo/bingo.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/bwplotka/bingo v0.4.0 +require github.com/bwplotka/bingo v0.5.1 diff --git a/.bingo/buf.mod b/.bingo/buf.mod index 2cb56db36f..6bcedc262a 100644 --- a/.bingo/buf.mod +++ b/.bingo/buf.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/bufbuild/buf v0.40.0 // cmd/buf +require github.com/bufbuild/buf v0.56.0 // cmd/buf diff --git a/.bingo/buildifier.mod b/.bingo/buildifier.mod index 85b1bfb8ef..31bd3ef89a 100644 --- a/.bingo/buildifier.mod +++ b/.bingo/buildifier.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/bazelbuild/buildtools v0.0.0-20210227132407-f2aed9ee205d // buildifier +require github.com/bazelbuild/buildtools v0.0.0-20210920153738-d6daef01a1a2 // buildifier diff --git a/.bingo/flaex.mod b/.bingo/flaex.mod index 8bb486c4ef..07cd17df2c 100644 --- a/.bingo/flaex.mod +++ b/.bingo/flaex.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/owncloud/flaex v0.2.1-0.20210701123229-9d7dceed124f +require github.com/owncloud/flaex v0.2.0 diff --git a/.bingo/golangci-lint.mod b/.bingo/golangci-lint.mod index 656643638e..b8c188d7c8 100644 --- a/.bingo/golangci-lint.mod +++ b/.bingo/golangci-lint.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/golangci/golangci-lint v1.37.1 // cmd/golangci-lint +require github.com/golangci/golangci-lint v1.42.1 // cmd/golangci-lint diff --git a/.bingo/hugo.mod b/.bingo/hugo.mod index 2a7f90df5b..d6723b3672 100644 --- a/.bingo/hugo.mod +++ b/.bingo/hugo.mod @@ -4,4 +4,4 @@ go 1.16 replace github.com/markbates/inflect => github.com/markbates/inflect v0.0.0-20171215194931-a12c3aec81a6 -require github.com/gohugoio/hugo v0.87.0 +require github.com/gohugoio/hugo v0.88.1 diff --git a/.bingo/oapi-codegen.mod b/.bingo/oapi-codegen.mod index f9800a49a9..ff0b1868f4 100644 --- a/.bingo/oapi-codegen.mod +++ b/.bingo/oapi-codegen.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.15 -require github.com/deepmap/oapi-codegen v1.6.1 // cmd/oapi-codegen +require github.com/deepmap/oapi-codegen v1.8.2 // cmd/oapi-codegen diff --git a/.bingo/protoc-gen-doc.mod b/.bingo/protoc-gen-doc.mod index e9f306532c..71ce1ab065 100644 --- a/.bingo/protoc-gen-doc.mod +++ b/.bingo/protoc-gen-doc.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/pseudomuto/protoc-gen-doc v1.4.1 // cmd/protoc-gen-doc +require github.com/pseudomuto/protoc-gen-doc v1.5.0 // cmd/protoc-gen-doc diff --git a/.bingo/protoc-gen-go.mod b/.bingo/protoc-gen-go.mod index 657bc8df53..f03a949a78 100644 --- a/.bingo/protoc-gen-go.mod +++ b/.bingo/protoc-gen-go.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require google.golang.org/protobuf v1.26.0 // cmd/protoc-gen-go +require google.golang.org/protobuf v1.27.1 // cmd/protoc-gen-go diff --git a/.bingo/protoc-gen-micro.mod b/.bingo/protoc-gen-micro.mod index 4d70676040..3e2dd99e2f 100644 --- a/.bingo/protoc-gen-micro.mod +++ b/.bingo/protoc-gen-micro.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/asim/go-micro/cmd/protoc-gen-micro/v3 v3.0.0-20210329103359-9b41d1bf0888 +require github.com/asim/go-micro/cmd/protoc-gen-micro/v3 v3.0.0-20210924081004-8c39b1e1204d diff --git a/.bingo/protoc-gen-openapiv2.mod b/.bingo/protoc-gen-openapiv2.mod index c75ff05627..884e921720 100644 --- a/.bingo/protoc-gen-openapiv2.mod +++ b/.bingo/protoc-gen-openapiv2.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/grpc-ecosystem/grpc-gateway/v2 v2.3.0 // protoc-gen-openapiv2 +require github.com/grpc-ecosystem/grpc-gateway/v2 v2.6.0 // protoc-gen-openapiv2 diff --git a/.bingo/reflex.mod b/.bingo/reflex.mod index 7ed0002feb..928b66a8df 100644 --- a/.bingo/reflex.mod +++ b/.bingo/reflex.mod @@ -2,4 +2,4 @@ module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT go 1.16 -require github.com/cespare/reflex v0.3.0 +require github.com/cespare/reflex v0.3.1 diff --git a/.bingo/variables.env b/.bingo/variables.env index 3cf782a06b..84c6018a2f 100644 --- a/.bingo/variables.env +++ b/.bingo/variables.env @@ -8,37 +8,37 @@ if [ -z "$GOBIN" ]; then fi -BINGO="${GOBIN}/bingo-v0.4.0" +BINGO="${GOBIN}/bingo-v0.5.1" -BUF="${GOBIN}/buf-v0.40.0" +BUF="${GOBIN}/buf-v0.56.0" -BUILDIFIER="${GOBIN}/buildifier-v0.0.0-20210227132407-f2aed9ee205d" +BUILDIFIER="${GOBIN}/buildifier-v0.0.0-20210920153738-d6daef01a1a2" CALENS="${GOBIN}/calens-v0.2.0" FILEB0X="${GOBIN}/fileb0x-v1.1.4" -FLAEX="${GOBIN}/flaex-v0.2.1-0.20210701123229-9d7dceed124f" +FLAEX="${GOBIN}/flaex-v0.2.0" -GOLANGCI_LINT="${GOBIN}/golangci-lint-v1.37.1" +GOLANGCI_LINT="${GOBIN}/golangci-lint-v1.42.1" GOX="${GOBIN}/gox-v1.0.1" -HUGO="${GOBIN}/hugo-v0.87.0" +HUGO="${GOBIN}/hugo-v0.88.1" MUTAGEN="${GOBIN}/mutagen-v0.11.8" -OAPI_CODEGEN="${GOBIN}/oapi-codegen-v1.6.1" +OAPI_CODEGEN="${GOBIN}/oapi-codegen-v1.8.2" -PROTOC_GEN_DOC="${GOBIN}/protoc-gen-doc-v1.4.1" +PROTOC_GEN_DOC="${GOBIN}/protoc-gen-doc-v1.5.0" -PROTOC_GEN_GO="${GOBIN}/protoc-gen-go-v1.26.0" +PROTOC_GEN_GO="${GOBIN}/protoc-gen-go-v1.27.1" -PROTOC_GEN_MICRO="${GOBIN}/protoc-gen-micro-v3.0.0-20210329103359-9b41d1bf0888" +PROTOC_GEN_MICRO="${GOBIN}/protoc-gen-micro-v3.0.0-20210924081004-8c39b1e1204d" PROTOC_GEN_MICROWEB="${GOBIN}/protoc-gen-microweb-v0.0.0-20210824101557-828409dbfbf9" -PROTOC_GEN_OPENAPIV2="${GOBIN}/protoc-gen-openapiv2-v2.3.0" +PROTOC_GEN_OPENAPIV2="${GOBIN}/protoc-gen-openapiv2-v2.6.0" -REFLEX="${GOBIN}/reflex-v0.3.0" +REFLEX="${GOBIN}/reflex-v0.3.1"