diff --git a/internal/plugin.go b/internal/plugin.go index ec575ed..1d6ac60 100644 --- a/internal/plugin.go +++ b/internal/plugin.go @@ -20,7 +20,7 @@ func NewDOPlugin() sdk.PluginProvider { func (p *doPlugin) Manifest() sdk.PluginManifest { return sdk.PluginManifest{ Name: "workflow-plugin-digitalocean", - Version: "0.4.0", + Version: "0.5.0", Author: "GoCodeAlone", Description: "DigitalOcean IaC provider: App Platform, DOKS, databases, load balancers, VPC, firewall, DNS, Spaces, DOCR, certificates, and Droplets", } diff --git a/internal/provider.go b/internal/provider.go index 459c610..0945c6c 100644 --- a/internal/provider.go +++ b/internal/provider.go @@ -36,7 +36,7 @@ func NewDOProvider() *DOProvider { } func (p *DOProvider) Name() string { return "digitalocean" } -func (p *DOProvider) Version() string { return "0.4.0" } +func (p *DOProvider) Version() string { return "0.5.0" } // Initialize configures the godo client using the provided config map. // Required: "token". diff --git a/plugin.json b/plugin.json index 949aae4..4b0a7a2 100644 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "name": "workflow-plugin-digitalocean", - "version": "0.4.0", + "version": "0.5.0", "description": "DigitalOcean IaC provider: App Platform, DOKS, databases, Redis cache, load balancers, VPC, firewall, DNS, Spaces, DOCR, certificates, Droplets, IAM (declared), and API gateway", "author": "GoCodeAlone", "license": "MIT",