Skip to content

Commit

Permalink
chore: Bump version to 0.4.0 (PRQL#1520)
Browse files Browse the repository at this point in the history
  • Loading branch information
max-sixty authored Jan 16, 2023
1 parent aa543d4 commit 43eb8b2
Show file tree
Hide file tree
Showing 10 changed files with 33 additions and 25 deletions.
26 changes: 17 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# PRQL Changelog

## 0.4.0 — [unreleased]
## 0.4.0 — 2022-01-15

0.4.0 brings lots of new features including `switch`, `select ![]` and numbers
with underscores. We have initial (unpublished) bindings to Elixir. And then
there's the usual improvements to fixes & documentation (only a minority are
listed below in this release).

0.4.0 also has some breaking changes: `dialect` renaming to `target`, and the
library's API has changed.

**Features**:

Expand Down Expand Up @@ -142,14 +150,14 @@

**New contributors**:

- @EArazli made their first contribution in #1359
- @boramalper made their first contribution in #1362
- @allurefx made their first contribution in #1377
- @bcho made their first contribution in #1375
- @JettChenT made their first contribution in #1385
- @BlurrechDev made their first contribution in #1411
- @BCsabaEngine made their first contribution in #1432
- @kasvith made their first contribution in #1500
- @EArazli, with #1359
- @boramalper, with #1362
- @allurefx, with #1377
- @bcho, with #1375
- @JettChenT, with #1385
- @BlurrechDev, with #1411
- @BCsabaEngine, with #1432
- @kasvith, with #1500

## 0.3.1 - 2022-12-03

Expand Down
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.3.1"
version = "0.4.0"

[workspace.metadata.release]
consolidate-commits = true
Expand Down
2 changes: 1 addition & 1 deletion DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ Currently we release in a semi-automated way:
1. PR & merge an updated [Changelog](CHANGELOG.md). GitHub will produce a draft
version at <https://github.com/PRQL/prql/releases/new>, including "New
Contributors".
2. Run `cargo release version patch && cargo release replace` to bump the
2. Run `cargo release version patch -x && cargo release replace -x` to bump the
versions, then PR the resulting commit.
3. After merging, go to
[Draft a new release](https://github.com/PRQL/prql/releases/new), copy the
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 @@ -47,7 +47,7 @@ very welcome.
PRQL allows specifying a version of the language in the PRQL header, like:

```prql
prql version:"0.3"
prql version:"0.4"
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.3"
prql version:"0.4"

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/queries/dialect-and-version-2.prql
---
prql version:^0.3
prql version:^0.4



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 @@ -157,13 +157,13 @@ mod test {
"### );

assert_yaml_snapshot!(parse_and_resolve(r###"
prql target:sql.bigquery version:"0.3"
prql target:sql.bigquery version:"0.4"
from employees
"###).unwrap(), @r###"
---
def:
version: ^0.3
version: ^0.4
other:
target: sql.bigquery
tables:
Expand Down
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.3.1"
"version": "0.4.0"
}

0 comments on commit 43eb8b2

Please sign in to comment.