Skip to content

Commit b1ecb9e

Browse files
committed
chore: bump vib api version
1 parent da2d854 commit b1ecb9e

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ go 1.21
55

66
require (
77
github.com/mitchellh/mapstructure v1.5.0
8-
github.com/vanilla-os/vib/api v0.0.0-20231203164136-c843eaca2af6
8+
github.com/vanilla-os/vib/api v0.0.0-20240813120326-9720e4efcc84
99
)

go.sum

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
github.com/mitchellh/mapstructure v1.5.0 h1:jeMsZIYE/09sWLaz43PL7Gy6RuMjD2eJVyuac5Z2hdY=
2-
github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo=
3-
github.com/vanilla-os/vib/api v0.0.0-20231203164136-c843eaca2af6 h1:J9h3w+pi9ZhhXDS+d/9IxWNbJ4hSMlUU8HFrF5RTtWE=
4-
github.com/vanilla-os/vib/api v0.0.0-20231203164136-c843eaca2af6/go.mod h1:vjJzDfFxfFHN5O2hcMwGM9De3+H9gGa00Pr3Um6EmCA=
1+
github.com/vanilla-os/vib/api v0.0.0-20240618053016-44e9ee99064a h1:KyveS2x+igyAprwtm8hezadDc7qkVP4XubM43Im2UZA=
2+
github.com/vanilla-os/vib/api v0.0.0-20240618053016-44e9ee99064a/go.mod h1:vjJzDfFxfFHN5O2hcMwGM9De3+H9gGa00Pr3Um6EmCA=
3+
github.com/vanilla-os/vib/api v0.0.0-20240710093922-7cf30ad33093 h1:7NnTkMdojYFv/LbtXsspKCRI5F0LqS2oMpAnojbcia0=
4+
github.com/vanilla-os/vib/api v0.0.0-20240710093922-7cf30ad33093/go.mod h1:vjJzDfFxfFHN5O2hcMwGM9De3+H9gGa00Pr3Um6EmCA=
5+
github.com/vanilla-os/vib/api v0.0.0-20240813120326-9720e4efcc84 h1:i4orhMjpCHOyG0C1W+yXTjuuAu9PmjLDM50AeBRm54I=
6+
github.com/vanilla-os/vib/api v0.0.0-20240813120326-9720e4efcc84/go.mod h1:vjJzDfFxfFHN5O2hcMwGM9De3+H9gGa00Pr3Um6EmCA=

plugin.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func fetchSources(source api.Source, name string, recipe *api.Recipe) error {
4040
func PlugInfo() *C.char {
4141
plugininfo := &api.PluginInfo{
4242
Name: "PLUGINAME", // The name of the plugin
43-
Type: api.BuildPlugin // The type of plugin. This plugin template does NOT function as a FinalizePlugin, so unless you have manually modified it accordingly, this value should stay as api.BuildPlugin
43+
Type: api.BuildPlugin, // The type of plugin. This plugin template does NOT function as a FinalizePlugin, so unless you have manually modified it accordingly, this value should stay as api.BuildPlugin
4444
}
4545
pluginjson, err := json.Marshal(plugininfo)
4646
if err != nil {

0 commit comments

Comments
 (0)