We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ecb2635 commit e9a9209Copy full SHA for e9a9209
main.go
@@ -10,7 +10,7 @@ import (
10
11
func main() {
12
pps := plugin.NewSet()
13
- pps.RegisterBuilder("my-builder", new(lxdapi.Builder))
+ pps.RegisterBuilder("builder", new(lxdapi.Builder))
14
pps.SetVersion(lxdapiVersion.PluginVersion)
15
err := pps.Run()
16
if err != nil {
version/version.go
@@ -6,7 +6,7 @@ import (
6
7
var (
8
// Version is the main version number that is being run at the moment.
9
- Version = "0.0.3"
+ Version = "0.0.4"
// VersionPrerelease is A pre-release marker for the Version. If this is ""
// (empty string) then it means that it is a final release. Otherwise, this
0 commit comments