From 77ef33a7573c7ea730414458d65985181733ef63 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Thu, 24 Jul 2025 22:06:07 -0400 Subject: [PATCH] release: v2.21.1 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- crates/squawk/Cargo.toml | 2 +- flake.nix | 2 +- package.json | 2 +- squawk-vscode/package.json | 2 +- 6 files changed, 11 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fc17bd7..b3733bc4 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.21.1 - 2025-07-23 + +## Fixed + +- parser: bugged warning for invalid casts that was warning about all casts inside function calls. (#598) + ## v2.21.0 - 2025-07-23 ## Added diff --git a/Cargo.lock b/Cargo.lock index 846a4503..7674fc12 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2596,7 +2596,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "2.21.0" +version = "2.21.1" dependencies = [ "annotate-snippets", "anyhow", diff --git a/crates/squawk/Cargo.toml b/crates/squawk/Cargo.toml index 37cdfe40..14af8aab 100644 --- a/crates/squawk/Cargo.toml +++ b/crates/squawk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "2.21.0" +version = "2.21.1" default-run = "squawk" authors.workspace = true diff --git a/flake.nix b/flake.nix index d5444c8d..bd9fa992 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.21.0"; + version = "2.21.1"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index b1f5aa4f..e965fbb7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.21.0", + "version": "2.21.1", "description": "linter for PostgreSQL, focused on migrations", "repository": "git@github.com:sbdchd/squawk.git", "author": "Squawk Team & Contributors", diff --git a/squawk-vscode/package.json b/squawk-vscode/package.json index b420d624..2b79b484 100644 --- a/squawk-vscode/package.json +++ b/squawk-vscode/package.json @@ -9,7 +9,7 @@ "icon": "icon.png", "author": "Squawk Team & Contributors", "license": "(Apache-2.0 OR MIT)", - "version": "2.21.0", + "version": "2.21.1", "engines": { "vscode": "^1.101.0" },