Skip to content

Commit 1078214

Browse files
authored
release: 2.18.0 (#581)
1 parent 5c59a0f commit 1078214

File tree

8 files changed

+21
-5
lines changed

8 files changed

+21
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## v2.18.0 - 2025-07-03
11+
12+
## Added
13+
14+
- vscode: `Show tokens` command to get lexer output. (#579)
15+
- vscode: `Show server` & `Stop server` commands. (#576)
16+
- vscode: `show client logs` & `show syntax tree` commands. (#575)
17+
1018
## v2.17.0 - 2025-06-30
1119

1220
## Added

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ Use the WASM powered playground to check your SQL locally in the browser!
3636

3737
<https://play.squawkhq.com>
3838

39+
### Or via VSCode
40+
41+
<https://marketplace.visualstudio.com/items?itemName=sbdchd.squawk>
42+
3943
## Usage
4044

4145
```shell

crates/squawk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "squawk"
3-
version = "2.17.0"
3+
version = "2.18.0"
44
default-run = "squawk"
55

66
authors.workspace = true

docs/docs/quick_start.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ Use the WASM powered playground to check your SQL locally in the browser!
2929

3030
<https://play.squawkhq.com>
3131

32+
### Or via VSCode
33+
34+
<https://marketplace.visualstudio.com/items?itemName=sbdchd.squawk>
35+
3236
## Usage
3337

3438
<details><summary><code>example-migration.sql</code></summary>

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
{
1919
squawk = final.rustPlatform.buildRustPackage {
2020
pname = "squawk";
21-
version = "2.17.0";
21+
version = "2.18.0";
2222

2323
cargoLock = {
2424
lockFile = ./Cargo.lock;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "squawk-cli",
3-
"version": "2.17.0",
3+
"version": "2.18.0",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "[email protected]:sbdchd/squawk.git",
66
"author": "Squawk Team & Contributors",

squawk-vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"icon": "icon.png",
1010
"author": "Squawk Team & Contributors",
1111
"license": "(Apache-2.0 OR MIT)",
12-
"version": "2.17.0",
12+
"version": "2.18.0",
1313
"engines": {
1414
"vscode": "^1.101.0"
1515
},

0 commit comments

Comments
 (0)