Skip to content

Commit b873eeb

Browse files
authored
chore(release): upgrade types, server to v0.22.0-rc1 and bump minor version (#272)
1 parent 4c85af3 commit b873eeb

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ require (
66
github.com/buildkite/yaml v0.0.0-20230306222819-0e4e032d4835
77
github.com/coreos/go-semver v0.3.1
88
github.com/gin-gonic/gin v1.9.1
9-
github.com/go-vela/server v0.21.1-0.20231102163307-a22bbad88237
10-
github.com/go-vela/types v0.21.1-0.20231024201126-19101a5b1346
9+
github.com/go-vela/server v0.22.0-rc1
10+
github.com/go-vela/types v0.22.0-rc1
1111
github.com/golang-jwt/jwt/v5 v5.0.0
1212
github.com/google/go-cmp v0.6.0
1313
github.com/google/go-querystring v1.1.0

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ github.com/go-playground/universal-translator v0.18.1 h1:Bcnm0ZwsGyWbCzImXv+pAJn
3030
github.com/go-playground/universal-translator v0.18.1/go.mod h1:xekY+UJKNuX9WP91TpwSH2VMlDf28Uj24BCp08ZFTUY=
3131
github.com/go-playground/validator/v10 v10.14.0 h1:vgvQWe3XCz3gIeFDm/HnTIbj6UGmg/+t63MyGU2n5js=
3232
github.com/go-playground/validator/v10 v10.14.0/go.mod h1:9iXMNT7sEkjXb0I+enO7QXmzG6QCsPWY4zveKFVRSyU=
33-
github.com/go-vela/server v0.21.1-0.20231102163307-a22bbad88237 h1:AJXKnRaj1J2hCYeObAFCYZ5p8/3BDjqGrFuREaqwLzo=
34-
github.com/go-vela/server v0.21.1-0.20231102163307-a22bbad88237/go.mod h1:1nQQLHtK1EJWW/0sQ/62ryYsg4OccDt8JRmbzoIe+IA=
35-
github.com/go-vela/types v0.21.1-0.20231024201126-19101a5b1346 h1:8VqRJ02KcAxV+gHuxLzuPuNaf7EOE/zfBomEV+UPj/E=
36-
github.com/go-vela/types v0.21.1-0.20231024201126-19101a5b1346/go.mod h1:Jn8K28uj7mACc55fkFgaIzL0q45iXydOFGEeoSeHUtQ=
33+
github.com/go-vela/server v0.22.0-rc1 h1:zYVJBrBENc9XMAutczXTwoyU6KXVmQXBFJYfl0CWIyc=
34+
github.com/go-vela/server v0.22.0-rc1/go.mod h1:MiE7IMgqcnV5VcwpkwTMHCrPpCiKKYmYQLOZ+i/2rEg=
35+
github.com/go-vela/types v0.22.0-rc1 h1:LfYw8jiWW0KCPyIple2y9L75a5Lae454FfEe0JssLi0=
36+
github.com/go-vela/types v0.22.0-rc1/go.mod h1:ljNY36D6YkpObBbNF7Xslv3oxN4mGuQAwWhnnK/V06I=
3737
github.com/goccy/go-json v0.10.2 h1:CrxCmQqYDkv1z7lO7Wbh2HN93uovUHgrECaO5ZrCXAU=
3838
github.com/goccy/go-json v0.10.2/go.mod h1:6MelG93GURQebXPDq3khkgXZkazVtN9CRI+MGFi0w8I=
3939
github.com/golang-jwt/jwt/v5 v5.0.0 h1:1n1XNM9hk7O9mnQoNBGolZvzebBQ7p93ULHRc28XJUE=

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ var (
88
// VersionMajor is for an API incompatible changes.
99
VersionMajor int64
1010
// VersionMinor is for functionality in a backwards-compatible manner.
11-
VersionMinor int64 = 21
11+
VersionMinor int64 = 22
1212
// VersionPatch is for backwards-compatible bug fixes.
1313
VersionPatch int64
1414
)

0 commit comments

Comments
 (0)