Skip to content

Commit c8d4163

Browse files
authored
release: 2.5.0 (#475)
1 parent 8dd2d04 commit c8d4163

File tree

5 files changed

+18
-5
lines changed

5 files changed

+18
-5
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10-
## v2.4.0 - 2025-05-14
10+
## v2.5.0 - 2025-05-14
11+
12+
### Fixed
13+
14+
- Fixed parsing `create or replace view` (#474).
15+
16+
Previously, the following would error:
17+
18+
```sql
19+
create or replace view my_view as
20+
select x from foo;
21+
```
22+
23+
## v2.4.0 - 2025-05-13
1124

1225
### Fixed
1326

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.

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.4.0"
3+
version = "2.5.0"
44
default-run = "squawk"
55

66
authors.workspace = true

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

0 commit comments

Comments
 (0)