diff --git a/CHANGELOG.md b/CHANGELOG.md index c86364f5..8acd4b68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.23.0 - 2025-08-20 + +## Added + +- github: support overriding api url for github enterprise usage (#611). Thanks @jvatic! + +- lsp server: quick fix to open documentation for rule violation (#610) + +- lsp server: quick fixes to ignore rules for a line or entire file (#613) + +## Fixed + +- linter: violations no longer include leading whitespace & comments in their range. (#612) + ## v2.22.0 - 2025-08-07 ## Added diff --git a/Cargo.lock b/Cargo.lock index 475f17ae..993a8d8a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2596,7 +2596,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "2.22.0" +version = "2.23.0" dependencies = [ "annotate-snippets", "anyhow", diff --git a/crates/squawk/Cargo.toml b/crates/squawk/Cargo.toml index d6c7edb9..ea099ba6 100644 --- a/crates/squawk/Cargo.toml +++ b/crates/squawk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "2.22.0" +version = "2.23.0" default-run = "squawk" authors.workspace = true diff --git a/flake.nix b/flake.nix index 00e6077c..72fc993a 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.22.0"; + version = "2.23.0"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index 01fedc88..0c973042 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.22.0", + "version": "2.23.0", "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 7156b955..d1e172f7 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.22.0", + "version": "2.23.0", "engines": { "vscode": "^1.101.0" },