Skip to content

Commit

Permalink
chore: Bump version to 0.3.0 (#1191)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty authored Nov 30, 2022
1 parent 6fc5e7f commit 928d479
Show file tree
Hide file tree
Showing 8 changed files with 15 additions and 15 deletions.
14 changes: 7 additions & 7 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 @@ -17,7 +17,7 @@ members = [
opt-level = "s"

[workspace.package]
version = "0.2.11"
version = "0.3.0"

[workspace.metadata.release]
consolidate-commits = true
Expand Down
2 changes: 1 addition & 1 deletion book/src/queries/dialect_and_version.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ take 10
PRQL allows specifying a version of the language in the PRQL header, like:

```prql
prql version:"0.2"
prql version:"0.3"
from employees
```
Expand Down
2 changes: 1 addition & 1 deletion book/tests/prql/queries/dialect_and_version-2.prql
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
prql version:"0.2"
prql version:"0.3"

from employees
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ source: book/tests/snapshot.rs
expression: Statements(parse(&prql).unwrap())
input_file: book/tests/prql/queries/dialect_and_version-2.prql
---
prql dialect:generic version:^0.2
prql dialect:generic version:^0.3



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.

4 changes: 2 additions & 2 deletions prql-compiler/src/semantic/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -110,13 +110,13 @@ mod test {
"### );

assert_yaml_snapshot!(parse_and_resolve(r###"
prql dialect:bigquery version:"0.2"
prql dialect:bigquery version:"0.3"
from employees
"###).unwrap(), @r###"
---
def:
version: ^0.2
version: ^0.3
dialect: BigQuery
tables:
- id: 0
Expand Down
2 changes: 1 addition & 1 deletion prql-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@
"build-web": "wasm-pack build --target no-modules --release --out-dir dist/web"
},
"types": "dist/node/prql_js.d.ts",
"version": "0.2.11"
"version": "0.3.0"
}

0 comments on commit 928d479

Please sign in to comment.