From 172adb95e1ca56f52075962536f2f38792994242 Mon Sep 17 00:00:00 2001 From: Luiz Aoqui Date: Fri, 26 Jun 2026 12:31:09 -0400 Subject: [PATCH] release v0.20.1 --- CHANGELOG.md | 15 +++++++++++++++ README.md | 2 +- VERSION | 2 +- internal/provider/version.go | 2 +- 4 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 229b4232..53157027 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,18 @@ +# 0.20.1 (2026/Jun/26) + +### New features + +- **New function `provider::oxide::credentials`:** Added new function to read Oxide API credentials from a credentials file. [#782](https://github.com/oxidecomputer/terraform-provider-oxide/pull/782) + +### List of commits + +- [1ff95ea](https://github.com/oxidecomputer/terraform-provider-oxide/commit/1ff95ea) credentials: add new function to read credentials (#782) +- [5379ca4](https://github.com/oxidecomputer/terraform-provider-oxide/commit/5379ca4) tests: refactor `sharedtest.ParsedAccConfig` (#783) +- [b4cf8a7](https://github.com/oxidecomputer/terraform-provider-oxide/commit/b4cf8a7) ci: fix simulate Omicron image (#780) +- [6ff02c0](https://github.com/oxidecomputer/terraform-provider-oxide/commit/6ff02c0) ci: ignore errors on log collection (#777) +- [4b64ec0](https://github.com/oxidecomputer/terraform-provider-oxide/commit/4b64ec0) build(deps): bump actions/checkout from 6 to 7 (#773) +- [b1fc80f](https://github.com/oxidecomputer/terraform-provider-oxide/commit/b1fc80f) misc: prepare for release v0.20.0 (#774) + # 0.20.0 (2026/Jun/18) ### Breaking changes diff --git a/README.md b/README.md index 767bd23a..de2a8b27 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ terraform { required_providers { oxide = { source = "oxidecomputer/oxide" - version = "0.20.0" + version = "0.20.1" } } } diff --git a/VERSION b/VERSION index 821e1683..847e9aef 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.20.0-dev +0.20.1 diff --git a/internal/provider/version.go b/internal/provider/version.go index e19e207d..119f8c61 100644 --- a/internal/provider/version.go +++ b/internal/provider/version.go @@ -7,4 +7,4 @@ package provider // TODO: Make sure this variable is updated every time a new version is released // Version contains the current terraform provider version. -const Version = "0.20.0" +const Version = "0.20.1"