Skip to content

Commit

Permalink
fix: correct license plugin version and capabilities
Browse files Browse the repository at this point in the history
Signed-off-by: Dustin Scott <[email protected]>
  • Loading branch information
scottd018 committed Jul 3, 2024
1 parent 41510a3 commit 0026c19
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion internal/plugins/license/v2/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ const pluginName = "license." + plugins.DefaultNameQualifier

//nolint:gochecknoglobals //needed for plugin architecture
var (
pluginVersion = plugin.Version{Number: 1}
pluginVersion = plugin.Version{Number: 2}
supportedProjectVersions = []config.Version{cfgv3.Version}
pluginKey = plugin.KeyFor(Plugin{})
)

var (
_ plugin.Plugin = Plugin{}
_ plugin.Init = Plugin{}
_ plugin.Edit = Plugin{}
)

type Plugin struct {
Expand Down

0 comments on commit 0026c19

Please sign in to comment.