diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 001e0af..88848dc 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - "rust": "0.1.12" + "rust": "0.1.13" } diff --git a/rust/CHANGELOG.md b/rust/CHANGELOG.md index dafd572..8d01664 100644 --- a/rust/CHANGELOG.md +++ b/rust/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.1.13](https://github.com/godaddy/cli/compare/v0.1.12...v0.1.13) (2026-07-22) + + +### Features + +* **dns:** add --replace-conflicting-types flag, fix CNAME conflict errors ([#102](https://github.com/godaddy/cli/issues/102)) ([2c0e576](https://github.com/godaddy/cli/commit/2c0e576048e393af8d35c78ed2bee6cbfa78af4f)) +* **dry-run:** let dry-run validate input and preview real effects ([#141](https://github.com/godaddy/cli/issues/141)) ([6651c6b](https://github.com/godaddy/cli/commit/6651c6be293aa93fc48503a7486353d23d2aadc1)) + + +### Bug Fixes + +* **application validate:** restore remote application state checks ([#134](https://github.com/godaddy/cli/issues/134)) [DEVEX-708] ([b84ddb0](https://github.com/godaddy/cli/commit/b84ddb05c42c1b66e571818e3759f20e108347a0)) +* **dns:** stop `dns set` from wiping zones via the v3 replace-record PUT ([#143](https://github.com/godaddy/cli/issues/143)) ([90c2408](https://github.com/godaddy/cli/commit/90c240831e20104a7dcc326fc3b7b0a57469af0e)) + ## [0.1.12](https://github.com/godaddy/cli/compare/v0.1.11...v0.1.12) (2026-07-20) diff --git a/rust/Cargo.lock b/rust/Cargo.lock index c9ea489..93732ff 100644 --- a/rust/Cargo.lock +++ b/rust/Cargo.lock @@ -954,7 +954,7 @@ dependencies = [ [[package]] name = "domains-client" -version = "0.1.12" +version = "0.1.13" dependencies = [ "bytes", "futures", @@ -1254,7 +1254,7 @@ dependencies = [ [[package]] name = "generate-api-catalog" -version = "0.1.12" +version = "0.1.13" dependencies = [ "anyhow", "base64 0.22.1", @@ -1332,7 +1332,7 @@ dependencies = [ [[package]] name = "godaddy-cli" -version = "0.1.12" +version = "0.1.13" dependencies = [ "async-trait", "bytes", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index 0f4f948..f3615a3 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godaddy-cli" -version = "0.1.12" +version = "0.1.13" edition = "2024" description = "GoDaddy developer CLI" license = "Proprietary" diff --git a/rust/domains-client/Cargo.toml b/rust/domains-client/Cargo.toml index 5193275..a02173a 100644 --- a/rust/domains-client/Cargo.toml +++ b/rust/domains-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "domains-client" -version = "0.1.12" +version = "0.1.13" edition = "2024" license = "Proprietary" description = "Generated GoDaddy Domains API client (domains list + availability + suggest + DNS records), produced from the vendored OpenAPI 3.0 spec by progenitor at build time." diff --git a/rust/tools/generate-api-catalog/Cargo.toml b/rust/tools/generate-api-catalog/Cargo.toml index 558deff..99c5d20 100644 --- a/rust/tools/generate-api-catalog/Cargo.toml +++ b/rust/tools/generate-api-catalog/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "generate-api-catalog" -version = "0.1.12" +version = "0.1.13" edition = "2024" publish = false