Skip to content

Commit 6b4c438

Browse files
authored
chore: Bump version to 0.12.3 (#4580)
1 parent f283f9d commit 6b4c438

File tree

17 files changed

+52
-34
lines changed

17 files changed

+52
-34
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# PRQL Changelog
22

3+
## [unreleased]
4+
5+
**Language**:
6+
7+
**Features**:
8+
9+
**Fixes**:
10+
11+
**Documentation**:
12+
13+
**Web**:
14+
15+
**Integrations**:
16+
17+
**Internal changes**:
18+
19+
**New Contributors**:
20+
321
## 0.12.2 — 2024-06-10
422

523
0.12.2 is a very small release which renames `prql-js` to `prqlc-js` to match

Cargo.lock

+14-14
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repository = "https://github.com/PRQL/prql"
2525
# This isn't tested since `cargo-msrv` doesn't support workspaces; instead we
2626
# test `metadata.msrv` in `prqlc`
2727
rust-version = "1.70.0"
28-
version = "0.12.2"
28+
version = "0.12.3"
2929

3030
[profile.release]
3131
# Optimize for binary size in releases of all crates,

lutra/lutra/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ connector_arrow = {version = "0.4.1", features = ["src_sqlite"]}
3030
env_logger = "0.10.2"
3131
itertools = {workspace = true}
3232
log = {workspace = true}
33-
prqlc = {path = "../../prqlc/prqlc", version = "0.12.2", default-features = false}
33+
prqlc = {path = "../../prqlc/prqlc", version = "0.12.3", default-features = false}
3434
rusqlite = {version = "0.31.0", features = ["bundled"]}
3535
walkdir = "2.5.0"
3636

prqlc/bindings/elixir/native/prql/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ doc = false
2020

2121
# See Readme for details on Mac
2222
[target.'cfg(not(any(target_family="wasm", target_os = "macos")))'.dependencies]
23-
prqlc = {path = "../../../../prqlc", default-features = false, version = "0.12.2" }
23+
prqlc = {path = "../../../../prqlc", default-features = false, version = "0.12.3" }
2424
rustler = "0.32.1"

prqlc/bindings/js/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

prqlc/bindings/js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
"test": "mocha tests"
3636
},
3737
"types": "dist/node/prqlc_js.d.ts",
38-
"version": "0.12.2"
38+
"version": "0.12.3"
3939
}

prqlc/prql-compiler-macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ proc_macro = true
1414
test = false
1515

1616
[dependencies]
17-
prqlc = {path = "../prqlc", default-features = false, version = "0.12.2" }
17+
prqlc = {path = "../prqlc", default-features = false, version = "0.12.3" }
1818
syn = "2.0.66"
1919

2020
[package.metadata.release]

prqlc/prql-compiler/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ version.workspace = true
1414
metadata.msrv = "1.70.0"
1515

1616
[dependencies]
17-
prqlc = {path = "../prqlc", version = "0.12.2", default-features = false}
17+
prqlc = {path = "../prqlc", version = "0.12.3", default-features = false}
1818

1919
[lib]
2020
doctest = false

prqlc/prqlc-parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ version.workspace = true
1212
doctest = false
1313

1414
[dependencies]
15-
prqlc-ast = {path = "../prqlc-ast", version = "0.12.2" }
15+
prqlc-ast = {path = "../prqlc-ast", version = "0.12.3" }
1616
serde = {workspace = true}
1717
serde_yaml = {workspace = true, optional = true}
1818
semver = {version = "1.0.23", features = ["serde"]}

prqlc/prqlc/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ test-dbs = ["anyhow", "duckdb", "glob", "rusqlite", "tokio"]
4040
test-dbs-external = ["anyhow", "duckdb", "glob", "mysql", "pg_bigdecimal", "postgres", "rusqlite", "tiberius", "tokio", "tokio-util"]
4141

4242
[dependencies]
43-
prqlc-ast = {path = "../prqlc-ast", version = "0.12.2" }
44-
prqlc-parser = {path = "../prqlc-parser", version = "0.12.2" }
43+
prqlc-ast = {path = "../prqlc-ast", version = "0.12.3" }
44+
prqlc-parser = {path = "../prqlc-parser", version = "0.12.3" }
4545

4646
anstream = {version = "0.6.14", features = ["auto"]}
4747
ariadne = "0.4.1"

prqlc/prqlc/src/cli/docs_generator.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ mod tests {
404404
405405
406406
407-
Generated with [prqlc](https://prql-lang.org/) 0.12.2.
407+
Generated with [prqlc](https://prql-lang.org/) 0.12.3.
408408
409409
----- stderr -----
410410
"###);

prqlc/prqlc/tests/integration/sql.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4336,7 +4336,7 @@ fn prql_version() {
43364336
"#).unwrap(),@r###"
43374337
SELECT
43384338
*,
4339-
'0.12.2' AS y
4339+
'0.12.3' AS y
43404340
FROM
43414341
x
43424342
"###);
@@ -4348,7 +4348,7 @@ fn shortest_prql_version() {
43484348
assert_snapshot!(compile(r#"[{version = prql.version}]"#).unwrap(),@r###"
43494349
WITH table_0 AS (
43504350
SELECT
4351-
'0.12.2' AS version
4351+
'0.12.3' AS version
43524352
)
43534353
SELECT
43544354
version

web/book/src/project/target.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ echo 'prql target:sql.generic
8080
PRQL allows specifying a version of the language in the PRQL header, like:
8181

8282
```prql
83-
prql version:"0.12.2"
83+
prql version:"0.12.3"
8484
8585
from employees
8686
```

web/book/tests/documentation/snapshots/documentation__book__project__target__version__1.snap

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ expression: "[{version = prql.version}]\n"
44
---
55
WITH table_0 AS (
66
SELECT
7-
'0.12.2' AS version
7+
'0.12.3' AS version
88
)
99
SELECT
1010
version

web/playground/package-lock.json

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

web/playground/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,5 @@
4747
"prepare": "rsync -ai --checksum --delete ../../prqlc/prqlc/tests/integration/data/ public/data/ && node generateBook.cjs",
4848
"preview": "vite preview"
4949
},
50-
"version": "0.12.2"
50+
"version": "0.12.3"
5151
}

0 commit comments

Comments
 (0)