Skip to content

Commit 1300761

Browse files
committed
chore: Release
1 parent 548dd7e commit 1300761

13 files changed

Lines changed: 27 additions & 27 deletions

File tree

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ repository = "https://github.com/PRQL/prql"
2121
# This isn't tested since `cargo-msrv` doesn't support workspaces; instead we
2222
# test `metadata.msrv` in `prqlc`
2323
rust-version = "1.81.0"
24-
version = "0.13.13"
24+
version = "0.13.14"
2525

2626
[profile.release]
2727
lto = true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ path = "src/lib.rs"
2020
test = false
2121

2222
[target.'cfg(not(any(target_family="wasm")))'.dependencies]
23-
prqlc = { path = "../../../../prqlc", default-features = false, version = "0.13.13" }
23+
prqlc = { path = "../../../../prqlc", default-features = false, version = "0.13.14" }
2424
rustler = "0.37.0"

prqlc/bindings/js/package-lock.json

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

prqlc/bindings/js/package.json

Lines changed: 1 addition & 1 deletion
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.13.13"
38+
"version": "0.13.14"
3939
}

prqlc/packages/snap/snapcraft.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: prqlc
22
title: PRQL Compiler
33
base: core22
4-
version: "0.13.13"
4+
version: "0.13.14"
55
summary: CLI for PRQL, a modern language for transforming data
66
description: |
77
prqlc is the CLI for the PRQL compiler. It compiles PRQL to SQL, and offers various diagnostics.

prqlc/prqlc-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ proc-macro = true
1515
test = false
1616

1717
[dependencies]
18-
prqlc = {path = "../prqlc", default-features = false, version = "0.13.13" }
18+
prqlc = {path = "../prqlc", default-features = false, version = "0.13.14" }
1919
syn = "2.0.117"
2020

2121
[package.metadata.release]

prqlc/prqlc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ test-dbs-external = [
5454
]
5555

5656
[dependencies]
57-
prqlc-parser = { path = "../prqlc-parser", version = "0.13.13" }
57+
prqlc-parser = { path = "../prqlc-parser", version = "0.13.14" }
5858

5959
anstream = { version = "1.0.0", features = ["auto"] }
6060
ariadne = "0.5.1"

prqlc/prqlc/src/cli/docs_generator.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ mod tests {
343343
<meta charset="utf-8">
344344
<meta name="viewport" content="width=device-width, initial-scale=1">
345345
<meta name="keywords" content="prql">
346-
<meta name="generator" content="prqlc 0.13.13">
346+
<meta name="generator" content="prqlc 0.13.14">
347347
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
348348
<title>PRQL Docs</title>
349349
</head>
@@ -421,7 +421,7 @@ mod tests {
421421
422422
</main>
423423
<footer class="container border-top">
424-
<small class="text-body-secondary">Generated with <a href="https://prql-lang.org/" rel="external" target="_blank">prqlc</a> 0.13.13.</small>
424+
<small class="text-body-secondary">Generated with <a href="https://prql-lang.org/" rel="external" target="_blank">prqlc</a> 0.13.14.</small>
425425
</footer>
426426
</body>
427427
</html>
@@ -503,7 +503,7 @@ mod tests {
503503
504504
505505
506-
Generated with [prqlc](https://prql-lang.org/) 0.13.13.
506+
Generated with [prqlc](https://prql-lang.org/) 0.13.14.
507507
508508
----- stderr -----
509509
");

web/book/src/project/target.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ echo 'prql target:sql.generic
8383
PRQL allows specifying a version of the language in the PRQL header, like:
8484

8585
```prql
86-
prql version:"0.13.12"
86+
prql version:"0.13.13"
8787
8888
from employees
8989
```

0 commit comments

Comments
 (0)