Skip to content

Commit 32ec6bf

Browse files
authored
add back LIBPG_QUERY_PATH support (#399)
fixes #358
1 parent 7a6353f commit 32ec6bf

File tree

6 files changed

+12
-6
lines changed

6 files changed

+12
-6
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
## v1.5.1 - 2025-01-10
11+
12+
### Fixed
13+
14+
- Fixed support for custom LIBPG_QUERY_PATH (#399).
15+
1016
## v1.5.0 - 2025-01-09
1117

1218
### Added

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cli/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 = "1.5.0"
3+
version = "1.5.1"
44
authors = ["Steve Dignam <[email protected]>"]
55
edition = "2018"
66
license = "GPL-3.0"

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 = "1.5.0";
21+
version = "1.5.1";
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": "1.5.0",
3+
"version": "1.5.1",
44
"description": "linter for PostgreSQL, focused on migrations",
55
"repository": "[email protected]:sbdchd/squawk.git",
66
"author": "Steve Dignam <[email protected]>",

parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ keywords = ["postgres", "sql", "parser"]
1515
serde_json = "1.0"
1616
serde = { version = "1.0", features = ["derive"] }
1717
serde_repr = "0.1"
18-
libpg_query-sys = { git = "https://github.com/chdsbd/libpg_query-sys.git", rev = "f4584dcbcb8c1f3bee550477257e84a846fdd92d" }
18+
libpg_query-sys = { git = "https://github.com/chdsbd/libpg_query-sys.git", rev = "ac223c7b197459d657d166449ccf99883f23bbcb" }
1919

2020
[dev-dependencies]
2121
insta = "0.16.0"

0 commit comments

Comments
 (0)