Skip to content

Commit

Permalink
Bump to vib v1.0.0 changes
Browse files Browse the repository at this point in the history
  • Loading branch information
axtloss committed Jan 21, 2025
1 parent b1ecb9e commit 2932357
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
module github.com/<username>/<pluginname> // 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
)
3 changes: 3 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -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=
1 change: 1 addition & 0 deletions plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 2932357

Please sign in to comment.