From 2932357d7d0c89c86c34b72081fc771add20079b Mon Sep 17 00:00:00 2001 From: axtloss Date: Tue, 21 Jan 2025 10:53:53 +0100 Subject: [PATCH] Bump to vib v1.0.0 changes --- go.mod | 3 +-- go.sum | 3 +++ plugin.go | 1 + 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/go.mod b/go.mod index 388dc54..a5e2d26 100644 --- a/go.mod +++ b/go.mod @@ -1,9 +1,8 @@ module github.com// // remember to change this according to your needs! - go 1.21 require ( github.com/mitchellh/mapstructure v1.5.0 - github.com/vanilla-os/vib/api v0.0.0-20240813120326-9720e4efcc84 + github.com/vanilla-os/vib/api v0.0.0-20250121093646-a245279abb9b ) diff --git a/go.sum b/go.sum index a325fa2..fac60b8 100644 --- a/go.sum +++ b/go.sum @@ -1,6 +1,9 @@ +github.com/mitchellh/mapstructure v1.5.0/go.mod h1:bFUtVrKA4DC2yAKiSyO/QUcy7e+RRV2QTWOzhPopBRo= github.com/vanilla-os/vib/api v0.0.0-20240618053016-44e9ee99064a h1:KyveS2x+igyAprwtm8hezadDc7qkVP4XubM43Im2UZA= github.com/vanilla-os/vib/api v0.0.0-20240618053016-44e9ee99064a/go.mod h1:vjJzDfFxfFHN5O2hcMwGM9De3+H9gGa00Pr3Um6EmCA= github.com/vanilla-os/vib/api v0.0.0-20240710093922-7cf30ad33093 h1:7NnTkMdojYFv/LbtXsspKCRI5F0LqS2oMpAnojbcia0= github.com/vanilla-os/vib/api v0.0.0-20240710093922-7cf30ad33093/go.mod h1:vjJzDfFxfFHN5O2hcMwGM9De3+H9gGa00Pr3Um6EmCA= github.com/vanilla-os/vib/api v0.0.0-20240813120326-9720e4efcc84 h1:i4orhMjpCHOyG0C1W+yXTjuuAu9PmjLDM50AeBRm54I= github.com/vanilla-os/vib/api v0.0.0-20240813120326-9720e4efcc84/go.mod h1:vjJzDfFxfFHN5O2hcMwGM9De3+H9gGa00Pr3Um6EmCA= +github.com/vanilla-os/vib/api v0.0.0-20250121093646-a245279abb9b h1:zIPHMZsTLvmo3R0jbkdOCJ59p/YR2Jeu9mseU6p8+nk= +github.com/vanilla-os/vib/api v0.0.0-20250121093646-a245279abb9b/go.mod h1:vjJzDfFxfFHN5O2hcMwGM9De3+H9gGa00Pr3Um6EmCA= diff --git a/plugin.go b/plugin.go index 370cf77..0041990 100644 --- a/plugin.go +++ b/plugin.go @@ -41,6 +41,7 @@ func PlugInfo() *C.char { plugininfo := &api.PluginInfo{ Name: "PLUGINAME", // The name of the plugin 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 + UseContainerCmds: False, // If the plugin adds its own Containerfile directives, set it to False if the plugin only generates shell commands } pluginjson, err := json.Marshal(plugininfo) if err != nil {