diff --git a/Makefile b/Makefile index d2df3ed..3b5207a 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ OWNER := dnitsch NAME := reststrategy -GIT_TAG := "0.6.0" +GIT_TAG := "0.6.2" VERSION := "v$(GIT_TAG)" REVISION := $(shell git rev-parse --short HEAD) @@ -18,7 +18,10 @@ build_ci: tag: git tag "v$(GIT_TAG)" - git push origin "v$(GIT_TAG)" + git tag "apis/v$(GIT_TAG)" + git tag "seeder/v$(GIT_TAG)" + git tag "controller/v$(GIT_TAG)" + git push --tags release: OWNER=$(OWNER) NAME=$(NAME) PAT=$(PAT) VERSION=$(VERSION) . hack/release.sh diff --git a/controller/go.mod b/controller/go.mod index 79fa0d5..aa1fed2 100644 --- a/controller/go.mod +++ b/controller/go.mod @@ -3,8 +3,8 @@ module github.com/dnitsch/reststrategy/controller go 1.19 require ( - github.com/dnitsch/reststrategy/apis v0.0.0-20221013114436-eef8ecff08e7 - github.com/dnitsch/reststrategy/seeder v0.0.0-20221013114436-eef8ecff08e7 + github.com/dnitsch/reststrategy/apis v0.6.1-rc + github.com/dnitsch/reststrategy/seeder v0.6.1-rc // need to ensure that these packages are // aligned to server version k8s.io/api v0.25.2 diff --git a/controller/go.sum b/controller/go.sum index 43bbfac..f6a0f60 100644 --- a/controller/go.sum +++ b/controller/go.sum @@ -55,10 +55,10 @@ github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSs github.com/dnaeon/go-vcr v1.1.0 h1:ReYa/UBrRyQdant9B4fNHGoCNKw6qh6P0fsdGmZpR7c= github.com/dnitsch/configmanager v1.8.0 h1:IplCvObk6xRa2lAssLtpi0jur56DTsUwGrJEGu+kZwQ= github.com/dnitsch/configmanager v1.8.0/go.mod h1:hAFEcEd3mXlUWFUi+17iUdOO/qtNh7ft9Ri4Agz6J+c= -github.com/dnitsch/reststrategy/apis v0.0.0-20221013114436-eef8ecff08e7 h1:Rpfdk/WHIcTMeIreA5G2nqFJqwhSmB2LXllFgS2oGaI= -github.com/dnitsch/reststrategy/apis v0.0.0-20221013114436-eef8ecff08e7/go.mod h1:ndKudRdvk/2UD5OTbMfQDiYtBrZNX5PmowlYiSbmsvw= -github.com/dnitsch/reststrategy/seeder v0.0.0-20221013114436-eef8ecff08e7 h1:2DqIC5otrV/kXgGEsJq0oYiM5YDDH+VkY5pwIjaZVBw= -github.com/dnitsch/reststrategy/seeder v0.0.0-20221013114436-eef8ecff08e7/go.mod h1:RDdwl2zDJTwv2DfPOi4pVYeXp0/gpD6sj4EYN3EJvVM= +github.com/dnitsch/reststrategy/apis v0.6.1-rc h1:iRuqzUHz31JOXf1ai9tpX2yTwyIwK6PESxMLMY+gLew= +github.com/dnitsch/reststrategy/apis v0.6.1-rc/go.mod h1:ndKudRdvk/2UD5OTbMfQDiYtBrZNX5PmowlYiSbmsvw= +github.com/dnitsch/reststrategy/seeder v0.6.1-rc h1:63Sto9D6FmPS/wf9cRcHgl9muPtxaarsL3oSi+ePBHY= +github.com/dnitsch/reststrategy/seeder v0.6.1-rc/go.mod h1:RDdwl2zDJTwv2DfPOi4pVYeXp0/gpD6sj4EYN3EJvVM= github.com/dnitsch/simplelog v1.5.1 h1:PhIFuZluJIAUiKgJ+xBzTZwqe49PFg20d3ToDucu3Dg= github.com/dnitsch/simplelog v1.5.1/go.mod h1:scPvWULBlruthxS6seGJkMbc1DM5f44IRZNmaSZCJVU= github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE=