From 7fdae0bde1db692bbc220daa5154e713d24bba2b Mon Sep 17 00:00:00 2001 From: Owain Lewis Date: Mon, 27 Jul 2026 20:58:01 +0100 Subject: [PATCH] chore(release): prepare v0.9.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- tests/release-version.sh | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 2345fc9..c151b5f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -797,7 +797,7 @@ dependencies = [ [[package]] name = "push" -version = "0.8.2" +version = "0.9.0" dependencies = [ "anyhow", "chrono", diff --git a/Cargo.toml b/Cargo.toml index c3b07e0..4229a79 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "push" -version = "0.8.2" +version = "0.9.0" edition = "2021" license = "MIT" description = "A tiny messaging gateway that turns coding agents into a personal assistant you text." diff --git a/tests/release-version.sh b/tests/release-version.sh index c9d8cde..ddbf7a7 100755 --- a/tests/release-version.sh +++ b/tests/release-version.sh @@ -4,9 +4,9 @@ set -euo pipefail repo_root="$(cd "$(dirname "$0")/.." && pwd)" check="$repo_root/scripts/check-release-version.sh" -"$check" v0.8.2 +"$check" v0.9.0 -for invalid_tag in 0.8.2 v0.8.1 v0.8.2-rc.1 refs/tags/v0.8.2; do +for invalid_tag in 0.9.0 v0.8.2 v0.9.0-rc.1 refs/tags/v0.9.0; do if "$check" "$invalid_tag" >/dev/null 2>&1; then echo "release version check accepted invalid tag: $invalid_tag" >&2 exit 1