Skip to content

Commit

Permalink
build: Bump version to 0.9.0 (#3046)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty committed Jul 25, 2023
1 parent 11764f9 commit af3298f
Show file tree
Hide file tree
Showing 22 changed files with 38 additions and 37 deletions.
2 changes: 1 addition & 1 deletion .github/actions/build-prql-python/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
- uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
prefix-key: 0.8.1
prefix-key: 0.9.0
- uses: messense/maturin-action@v1
if: inputs.target == 'source'
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/build-prqlc/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ runs:
# Share cache with `test-rust`
save-if: false
shared-key: rust-${{ inputs.target }}
prefix-key: 0.8.1
prefix-key: 0.9.0

- if: runner.os == 'Linux'
shell: bash
Expand Down
2 changes: 1 addition & 1 deletion .github/actions/time-compilation/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ runs:
uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
prefix-key: 0.8.1
prefix-key: 0.9.0
# 'true' seems to require quotes (and using a bare `inputs.use_cache`
# doesn't work); I'm really not sure why. There are some issues on the
# interwebs around this, but I couldn't find one that explained it.
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-web.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
- name: 💰 Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: 0.8.1
prefix-key: 0.9.0
save-if:
${{ github.ref == 'refs/heads/web' || github.ref ==
'refs/heads/main' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ jobs:
uses: Swatinem/rust-cache@v2
with:
save-if: ${{ github.ref == 'refs/heads/main' }}
prefix-key: 0.8.1
prefix-key: 0.9.0
- run:
cargo tarpaulin --skip-clean --all-targets --features=test-dbs
--out=Xml
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-lib.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- name: 💰 Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: 0.8.1
prefix-key: 0.9.0
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: Build
uses: richb-hanover/cargo@v1.1.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: 💰 Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: 0.8.1
prefix-key: 0.9.0
shared-key: rust-${{ inputs.target}}
save-if: ${{ github.ref == 'refs/heads/main' }}
- name: 📎 Clippy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: 💰 Cache
uses: Swatinem/rust-cache@v2
with:
prefix-key: 0.8.1
prefix-key: 0.9.0
save-if: ${{ github.ref == 'refs/heads/main' }}
- uses: actions/setup-python@v4
with:
Expand Down
26 changes: 13 additions & 13 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.8.1"
version = "0.9.0"

[profile.release.package.prql-js]
# Tell `rust-js` to optimize for small code size.
Expand Down
2 changes: 1 addition & 1 deletion bindings/prql-elixir/native/prql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ test = false

# See Readme for details on Mac
[target.'cfg(not(any(target_family="wasm", target_os = "macos", tarpaulin)))'.dependencies]
prql-compiler = {path = "../../../../crates/prql_compiler", default-features = false, version = "0.8.1"}
prql-compiler = {path = "../../../../crates/prql_compiler", default-features = false, version = "0.9.0" }
rustler = "0.29.0"
4 changes: 2 additions & 2 deletions bindings/prql-js/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 bindings/prql-js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
"test": "mocha tests"
},
"types": "dist/node/prql_js.d.ts",
"version": "0.8.1"
"version": "0.9.0"
}
2 changes: 1 addition & 1 deletion crates/prql_ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prql_ast"
version = "0.0.0"
version = "0.9.0"
publish = false

edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/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 = "../prql_compiler", default-features = false, version = "0.8.1" }
prql-compiler = {path = "../prql_compiler", default-features = false, version = "0.9.0" }
syn = "2.0.2"

[package.metadata.release]
Expand Down
2 changes: 1 addition & 1 deletion crates/prql_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "prql_parser"
version = "0.0.0"
version = "0.9.0"
publish = false

edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/prqlc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ colorchoice-clap = "1.0.0"
env_logger = {version = "0.10.0", features = ["color"]}
itertools = "0.11.0"
notify = "^6.0.0"
prql-compiler = {path = '../prql_compiler', version = "0.8.1", features = ["serde_yaml"]}
prql-compiler = {path = '../prql_compiler', version = "0.9.0", features = ["serde_yaml"]}
regex = {version = "1.9.0", features = ["std", "unicode"]}
serde = "^1"
serde_json = "1.0.81"
Expand Down
3 changes: 2 additions & 1 deletion crates/prqlc/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,7 @@ group a_column (take 10 | sort b_column | derive {the_number = rank, last = lag
let result = Command::execute(
&Command::SQLCompile {
io_args: IoArgs::default(),
// FIXME: this doesn't seem to be working?
hide_signature_comment: true,
target: "sql.any".to_string(),
},
Expand All @@ -618,7 +619,7 @@ group a_column (take 10 | sort b_column | derive {the_number = rank, last = lag
FROM
x
-- Generated by PRQL compiler version:0.8.1 (https://prql-lang.org)
-- Generated by PRQL compiler version:0.9.0 (https://prql-lang.org)
"###);
}

Expand Down
2 changes: 1 addition & 1 deletion crates/tests_misc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "misc"
version = "0.0.0"
version = "0.9.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion web/book/src/language-features/target.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ echo 'prql target:sql.generic
PRQL allows specifying a version of the language in the PRQL header, like:

```prql
prql version:"0.8.1"
prql version:"0.9.0"
from employees
```
Expand Down
6 changes: 3 additions & 3 deletions web/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 web/playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
"start": "react-scripts start",
"test": "react-scripts test"
},
"version": "0.8.1"
"version": "0.9.0"
}

0 comments on commit af3298f

Please sign in to comment.