Skip to content

Commit 617fa99

Browse files
authored
chore: Bump versions to 0.9.1 (#3063)
1 parent fc522f1 commit 617fa99

File tree

20 files changed

+35
-35
lines changed

20 files changed

+35
-35
lines changed

.github/actions/build-prql-python/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
- uses: Swatinem/rust-cache@v2
1414
with:
1515
save-if: ${{ github.ref == 'refs/heads/main' }}
16-
prefix-key: 0.9.0
16+
prefix-key: 0.9.1
1717
- uses: messense/maturin-action@v1
1818
if: inputs.target == 'source'
1919
with:

.github/actions/build-prqlc/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ runs:
2424
# Share cache with `test-rust`
2525
save-if: false
2626
shared-key: rust-${{ inputs.target }}
27-
prefix-key: 0.9.0
27+
prefix-key: 0.9.1
2828

2929
- if: runner.os == 'Linux'
3030
shell: bash

.github/actions/time-compilation/action.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ runs:
1414
uses: Swatinem/rust-cache@v2
1515
with:
1616
save-if: ${{ github.ref == 'refs/heads/main' }}
17-
prefix-key: 0.9.0
17+
prefix-key: 0.9.1
1818
# 'true' seems to require quotes (and using a bare `inputs.use_cache`
1919
# doesn't work); I'm really not sure why. There are some issues on the
2020
# interwebs around this, but I couldn't find one that explained it.

.github/workflows/build-web.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: 💰 Cache
5757
uses: Swatinem/rust-cache@v2
5858
with:
59-
prefix-key: 0.9.0
59+
prefix-key: 0.9.1
6060
save-if:
6161
${{ github.ref == 'refs/heads/web' || github.ref ==
6262
'refs/heads/main' }}

.github/workflows/check-links-book.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Cache
5555
uses: Swatinem/rust-cache@v2
5656
with:
57-
prefix-key: 0.9.0
57+
prefix-key: 0.9.1
5858
save-if: ${{ github.ref == 'refs/heads/main' }}
5959

6060
- uses: arduino/setup-task@v1

.github/workflows/test-all.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ jobs:
106106
uses: Swatinem/rust-cache@v2
107107
with:
108108
save-if: ${{ github.ref == 'refs/heads/main' }}
109-
prefix-key: 0.9.0
109+
prefix-key: 0.9.1
110110
- run:
111111
cargo tarpaulin --skip-clean --all-targets --features=test-dbs
112112
--out=Xml

.github/workflows/test-lib.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: 💰 Cache
2424
uses: Swatinem/rust-cache@v2
2525
with:
26-
prefix-key: 0.9.0
26+
prefix-key: 0.9.1
2727
save-if: ${{ github.ref == 'refs/heads/main' }}
2828
- name: Build
2929
uses: richb-hanover/[email protected]

.github/workflows/test-rust.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: 💰 Cache
4040
uses: Swatinem/rust-cache@v2
4141
with:
42-
prefix-key: 0.9.0
42+
prefix-key: 0.9.1
4343
shared-key: rust-${{ inputs.target}}
4444
save-if: ${{ github.ref == 'refs/heads/main' }}
4545
- name: 📎 Clippy

.github/workflows/test-taskfile.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: 💰 Cache
2626
uses: Swatinem/rust-cache@v2
2727
with:
28-
prefix-key: 0.9.0
28+
prefix-key: 0.9.1
2929
save-if: ${{ github.ref == 'refs/heads/main' }}
3030
- uses: actions/setup-python@v4
3131
with:

Cargo.lock

+13-13
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
@@ -20,7 +20,7 @@ edition = "2021"
2020
license = "Apache-2.0"
2121
repository = "https://github.com/PRQL/prql"
2222
rust-version = "1.65.0"
23-
version = "0.9.0"
23+
version = "0.9.1"
2424

2525
[profile.release.package.prql-js]
2626
# Tell `rust-js` to optimize for small code size.

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ test = false
1919

2020
# See Readme for details on Mac
2121
[target.'cfg(not(any(target_family="wasm", target_os = "macos", tarpaulin)))'.dependencies]
22-
prql-compiler = {path = "../../../../crates/prql_compiler", default-features = false, version = "0.9.0" }
22+
prql-compiler = {path = "../../../../crates/prql_compiler", default-features = false, version = "0.9.1" }
2323
rustler = "0.29.0"

bindings/prql-js/package-lock.json

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

bindings/prql-js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,5 @@
2525
"test": "mocha tests"
2626
},
2727
"types": "dist/node/prql_js.d.ts",
28-
"version": "0.9.0"
28+
"version": "0.9.1"
2929
}

crates/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-
prql-compiler = {path = "../prql_compiler", default-features = false, version = "0.9.0" }
17+
prql-compiler = {path = "../prql_compiler", default-features = false, version = "0.9.1" }
1818
syn = "2.0.2"
1919

2020
[package.metadata.release]

crates/prqlc/src/cli.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -619,7 +619,7 @@ group a_column (take 10 | sort b_column | derive {the_number = rank, last = lag
619619
FROM
620620
x
621621
622-
-- Generated by PRQL compiler version:0.9.0 (https://prql-lang.org)
622+
-- Generated by PRQL compiler version:0.9.1 (https://prql-lang.org)
623623
"###);
624624
}
625625

crates/tests_misc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "misc"
3-
version = "0.9.0"
3+
version = "0.9.1"
44
edition = "2021"
55
publish = false
66

web/book/src/project/target.md

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

8181
```prql
82-
prql version:"0.9.0"
82+
prql version:"0.9.1"
8383
8484
from employees
8585
```

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
@@ -44,5 +44,5 @@
4444
"start": "react-scripts start",
4545
"test": "react-scripts test"
4646
},
47-
"version": "0.9.0"
47+
"version": "0.9.1"
4848
}

0 commit comments

Comments
 (0)