From 170958a4073a508851d387a17225b999fb6655bd Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 16 Jan 2026 06:12:23 +0000 Subject: [PATCH 1/2] chore: release v0.10.2 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c750865..7d55be1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.11.0](https://github.com/tarka/zone-update/compare/v0.10.1...v0.11.0) - 2026-01-16 + +### Other + +- Add async impl and update docs. +- Add sync version of bunny provider. +- Update the DNS record types and make non-exhaustive. +- Add note about Godaddy API restrictions. +- Minor cleanups. + ## [0.10.1](https://github.com/tarka/zone-update/compare/v0.10.0...v0.10.1) - 2026-01-15 ### Documentation diff --git a/Cargo.toml b/Cargo.toml index f31e199..af9453f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zone-update" -version = "0.10.1" +version = "0.11.0" description = "A library of CRUD-like operations on DNS zones for multiple providers" license = "Apache-2.0 OR MIT" repository = "https://github.com/tarka/zone-update" From 0854b170badca68f67c5540a67d4552a80d99212 Mon Sep 17 00:00:00 2001 From: Steve Smith Date: Fri, 16 Jan 2026 17:24:37 +1100 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d55be1..4434192 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [0.11.0](https://github.com/tarka/zone-update/compare/v0.10.1...v0.11.0) - 2026-01-16 +* Add support for Bunny + ### Other - Add async impl and update docs.