Skip to content

Commit 449d297

Browse files
committed
fix(contrib): update jzero contrin version
1 parent 7b2c489 commit 449d297

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-6
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ require (
1414
github.com/iancoleman/orderedmap v0.3.0
1515
github.com/jhump/protoreflect v1.17.0
1616
github.com/jzero-io/desc v0.0.1
17-
github.com/jzero-io/jzero-contrib v0.19.4
17+
github.com/jzero-io/jzero-contrib v0.21.4
1818
github.com/mitchellh/go-homedir v1.1.0
1919
github.com/moby/patternmatcher v0.6.0
2020
github.com/pkg/errors v0.9.1

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -134,8 +134,8 @@ github.com/jhump/protoreflect v1.17.0 h1:qOEr613fac2lOuTgWN4tPAtLL7fUSbuJL5X5Xum
134134
github.com/jhump/protoreflect v1.17.0/go.mod h1:h9+vUUL38jiBzck8ck+6G/aeMX8Z4QUY/NiJPwPNi+8=
135135
github.com/jzero-io/desc v0.0.1 h1:bu/TghFpy1K2D99B3PFGonWRoydYcGwt3hPPLu1YQvU=
136136
github.com/jzero-io/desc v0.0.1/go.mod h1:gav1fZ49+rsEjT/5MUNp6ueyNFuX0lDKGyzIM6NrB+E=
137-
github.com/jzero-io/jzero-contrib v0.19.4 h1:ccBvge4NiEOBypf3d3dxty+a4+4aKagiPtgbJsDzoDU=
138-
github.com/jzero-io/jzero-contrib v0.19.4/go.mod h1:D+SHbecWUDusY2FkRQrN6EU8KXUE7rCpzXLALpiNJaw=
137+
github.com/jzero-io/jzero-contrib v0.21.4 h1:dsyOY0ZUA14/5hvpn1VvPg17CmwQF7uo4V4zIWhNPPY=
138+
github.com/jzero-io/jzero-contrib v0.21.4/go.mod h1:3bCOT7I2ll2V82g464QMisRkPxSbmQ+KTqgxUqqDRs8=
139139
github.com/kevinburke/ssh_config v1.2.0 h1:x584FjTGwHzMwvHx18PXxbBVzfnxogHaAReU4gf13a4=
140140
github.com/kevinburke/ssh_config v1.2.0/go.mod h1:CT57kijsi8u/K/BOFA39wgDQJ9CxiF4nAY/ojJ6r6mM=
141141
github.com/klauspost/compress v1.17.11 h1:In6xLpyWOi1+C7tXUUWv2ot1QvBjxevKAaI6IXrJmUc=

internal/serverless/serverlessdelete/run.go

+1-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ import (
55
"path/filepath"
66
"strings"
77

8-
"github.com/jzero-io/jzero-contrib/modx"
98
"github.com/jzero-io/jzero-contrib/templatex"
109
"github.com/rinchsan/gosimports"
1110
"github.com/samber/lo"
@@ -73,7 +72,7 @@ func Run() error {
7372
}
7473

7574
for i := 0; i < len(remainingPlugins); i++ {
76-
pluginGoMod, err := modx.GetGoMod(filepath.Join(wd, remainingPlugins[i].Path))
75+
pluginGoMod, err := mod.GetGoMod(filepath.Join(wd, remainingPlugins[i].Path))
7776
if err != nil {
7877
return err
7978
}

main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ var (
1515

1616
// ldflags
1717
var (
18-
version = "0.35.0"
18+
version = "0.35.2"
1919
commit string
2020
date string
2121
)

0 commit comments

Comments
 (0)