From 216a6f5a4c101ae1898c56a4cc9e840a574db2be Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Wed, 14 May 2025 19:36:20 -0400 Subject: [PATCH] release: 2.6.0 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- crates/squawk/Cargo.toml | 2 +- flake.nix | 2 +- package.json | 2 +- 5 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fcbca07a..7dc8fb14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.6.0 - 2025-05-14 + +### Fixed + +- Fix the GitHub commenting overwriting comments made by other bots sharing the same name, i.e., the default GitHub Action bot. (#477) Thanks @danxmoran! + ## v2.5.0 - 2025-05-14 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index e6f9bac6..cf3fe475 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2543,7 +2543,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "2.5.0" +version = "2.6.0" dependencies = [ "annotate-snippets", "anyhow", diff --git a/crates/squawk/Cargo.toml b/crates/squawk/Cargo.toml index 8b5e7f24..5a4f7edd 100644 --- a/crates/squawk/Cargo.toml +++ b/crates/squawk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "2.5.0" +version = "2.6.0" default-run = "squawk" authors.workspace = true diff --git a/flake.nix b/flake.nix index 72e34a1c..723f8cd6 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.5.0"; + version = "2.6.0"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index 3516e891..f9acbd35 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.5.0", + "version": "2.6.0", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Steve Dignam ",