From 15e12b8a15cd9359fa60c267f2b4af39fc13d5a8 Mon Sep 17 00:00:00 2001 From: Brandon Wagner Date: Mon, 15 Jun 2026 11:28:24 -0400 Subject: [PATCH] prepare v0.9.0 release --- .web-docs/README.md | 2 +- docs/README.md | 2 +- example/template.pkr.hcl | 2 +- main.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.web-docs/README.md b/.web-docs/README.md index aba83a8..6914607 100644 --- a/.web-docs/README.md +++ b/.web-docs/README.md @@ -11,7 +11,7 @@ packer { required_plugins { oxide = { source = "github.com/oxidecomputer/oxide" - version = ">= 0.8.0" + version = ">= 0.9.0" } } } diff --git a/docs/README.md b/docs/README.md index 0b228d7..f606550 100644 --- a/docs/README.md +++ b/docs/README.md @@ -11,7 +11,7 @@ packer { required_plugins { oxide = { source = "github.com/oxidecomputer/oxide" - version = ">= 0.8.0" + version = ">= 0.9.0" } } } diff --git a/example/template.pkr.hcl b/example/template.pkr.hcl index c7c8bfa..bfb1140 100644 --- a/example/template.pkr.hcl +++ b/example/template.pkr.hcl @@ -1,7 +1,7 @@ packer { required_plugins { oxide = { - version = ">= 0.8.0" + version = ">= 0.9.0" source = "github.com/oxidecomputer/oxide" } } diff --git a/main.go b/main.go index a4b2d2e..169ebda 100644 --- a/main.go +++ b/main.go @@ -17,7 +17,7 @@ import ( var ( // Version is the MAJOR.MINOR.PATCH version of this plugin following semantic // versioning rules. Maintainers must update this as they develop this plugin. - Version = "0.8.0" + Version = "0.9.0" // VersionPreRelease is the pre-release identifier for the version. This is // generally modified via ldflags to create both release and pre-release builds.