Skip to content

Commit

Permalink
build: Bump version to 0.5.0 (#1740)
Browse files Browse the repository at this point in the history
* build: Bump version to 0.5.0
  • Loading branch information
max-sixty authored Feb 9, 2023
1 parent 5d772a0 commit d6713be
Show file tree
Hide file tree
Showing 11 changed files with 21 additions and 21 deletions.
20 changes: 10 additions & 10 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/PRQL/prql"
rust-version = "1.65.0"
version = "0.4.2"
version = "0.5.0"

[profile.release.package.prql-js]
# Tell `rustc` to optimize for small code size.
Expand Down
2 changes: 1 addition & 1 deletion book/src/language-features/target.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ very welcome.
PRQL allows specifying a version of the language in the PRQL header, like:

```prql
prql version:"0.4"
prql version:"0.5"
from employees
```
Expand Down
2 changes: 1 addition & 1 deletion book/tests/prql/language-features/target-2.prql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
prql version:"0.4"
prql version:"0.5"

from employees
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source: book/tests/snapshot.rs
expression: prql_to_pl(&prql).and_then(pl_to_prql).unwrap()
input_file: book/tests/prql/language-features/target-2.prql
---
prql version:^0.4
prql version:^0.5



Expand Down
2 changes: 1 addition & 1 deletion playground/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion prql-compiler/prql-compiler-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ proc_macro = true
test = false

[dependencies]
prql-compiler = {path = "..", default-features = false, version = "0.4.2"}
prql-compiler = {path = "..", default-features = false, version = "0.5.0" }
syn = "1.0"

[package.metadata.release]
Expand Down
2 changes: 1 addition & 1 deletion prql-compiler/prqlc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ color-eyre = "0.6.1"
env_logger = {version = "0.9.1", features = ["termcolor"]}
itertools = "0.10.3"
notify = "^5.1.0"
prql-compiler = {path = '..', version = "0.4.2"}
prql-compiler = {path = '..', version = "0.5.0" }
serde_json = "1.0.81"
serde_yaml = "0.9.1"
walkdir = "^2.3.2"
Expand Down
4 changes: 2 additions & 2 deletions prql-compiler/src/semantic/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,13 +170,13 @@ mod test {
"### );

assert_yaml_snapshot!(parse_and_resolve(r###"
prql target:sql.bigquery version:"0.4"
prql target:sql.bigquery version:"0.5"
from employees
"###).unwrap(), @r###"
---
def:
version: ^0.4
version: ^0.5
other:
target: sql.bigquery
tables:
Expand Down
2 changes: 1 addition & 1 deletion prql-elixir/native/prql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ name = "prql"
path = "src/lib.rs"

[dependencies]
prql-compiler = {path = "../../../prql-compiler", default-features = false, version = "0.4.2"}
prql-compiler = {path = "../../../prql-compiler", default-features = false, version = "0.5.0" }
[target.'cfg(not(any(target_family="wasm")))'.dependencies]
rustler = "0.27.0"
2 changes: 1 addition & 1 deletion prql-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"test": "wasm-pack test --firefox && mocha tests"
},
"types": "dist/node/prql_js.d.ts",
"version": "0.4.2"
"version": "0.5.0"
}

0 comments on commit d6713be

Please sign in to comment.