From 8b9bf78dbf64d40acf059b15252981362b5b905a Mon Sep 17 00:00:00 2001 From: Sean Laurent Date: Fri, 5 Jun 2026 15:15:06 -0700 Subject: [PATCH] chore: add cargo-release config and bump version to 0.3.11 Add release.toml to configure cargo-release with the correct tag format (tdns/v{{version}}) matching existing tag convention. Set publish=false since this is not published to crates.io. Bump version to 0.3.11 to skip past tags 0.3.9 and 0.3.10 which were pushed without matching Cargo.toml version bumps and cannot be reused. --- Cargo.lock | 2 +- Cargo.toml | 2 +- release.toml | 3 +++ 3 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 release.toml diff --git a/Cargo.lock b/Cargo.lock index 939262d..7c37efd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1668,7 +1668,7 @@ dependencies = [ [[package]] name = "tdns" -version = "0.3.8" +version = "0.3.11" dependencies = [ "async-trait", "clap", diff --git a/Cargo.toml b/Cargo.toml index 54ddc4e..a7e8454 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tdns" -version = "0.3.8" +version = "0.3.11" edition = "2024" repository = "https://github.com/organicveggie/tdns-cli" description = "CLI tool for Technitium DNS server." diff --git a/release.toml b/release.toml new file mode 100644 index 0000000..88717a5 --- /dev/null +++ b/release.toml @@ -0,0 +1,3 @@ +tag-name = "tdns/v{{version}}" +publish = false +pre-release-commit-message = "chore: release v{{version}}"