From e80e4e30dd7bcf13ff99adf88a6ac16235286f07 Mon Sep 17 00:00:00 2001 From: Steve Dignam Date: Thu, 3 Jul 2025 20:36:49 -0400 Subject: [PATCH] release: 2.18.0 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- README.md | 4 ++++ crates/squawk/Cargo.toml | 2 +- docs/docs/quick_start.md | 4 ++++ flake.nix | 2 +- package.json | 2 +- squawk-vscode/package.json | 2 +- 8 files changed, 21 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b092a61..b7ad4085 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## v2.18.0 - 2025-07-03 + +## Added + +- vscode: `Show tokens` command to get lexer output. (#579) +- vscode: `Show server` & `Stop server` commands. (#576) +- vscode: `show client logs` & `show syntax tree` commands. (#575) + ## v2.17.0 - 2025-06-30 ## Added diff --git a/Cargo.lock b/Cargo.lock index b3d30f90..aa99afdd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2596,7 +2596,7 @@ checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d" [[package]] name = "squawk" -version = "2.17.0" +version = "2.18.0" dependencies = [ "annotate-snippets", "anyhow", diff --git a/README.md b/README.md index e664fc7e..3830a626 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,10 @@ Use the WASM powered playground to check your SQL locally in the browser! +### Or via VSCode + + + ## Usage ```shell diff --git a/crates/squawk/Cargo.toml b/crates/squawk/Cargo.toml index 1dd71e5c..30c67eda 100644 --- a/crates/squawk/Cargo.toml +++ b/crates/squawk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "squawk" -version = "2.17.0" +version = "2.18.0" default-run = "squawk" authors.workspace = true diff --git a/docs/docs/quick_start.md b/docs/docs/quick_start.md index 256f5706..6570e145 100644 --- a/docs/docs/quick_start.md +++ b/docs/docs/quick_start.md @@ -29,6 +29,10 @@ Use the WASM powered playground to check your SQL locally in the browser! +### Or via VSCode + + + ## Usage
example-migration.sql diff --git a/flake.nix b/flake.nix index 811e677e..4459ceef 100644 --- a/flake.nix +++ b/flake.nix @@ -18,7 +18,7 @@ { squawk = final.rustPlatform.buildRustPackage { pname = "squawk"; - version = "2.17.0"; + version = "2.18.0"; cargoLock = { lockFile = ./Cargo.lock; diff --git a/package.json b/package.json index a1937399..bd92c265 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "squawk-cli", - "version": "2.17.0", + "version": "2.18.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 94f9e4c8..9da3c9a4 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.17.0", + "version": "2.18.0", "engines": { "vscode": "^1.101.0" },