Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat!: based on the released version of prql-compiler 0.9.2 #145

Merged
merged 5 commits into from
Jul 25, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 25 additions & 39 deletions LICENSE.note
Original file line number Diff line number Diff line change
Expand Up @@ -143,13 +143,6 @@ License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: equivalent
Repository: https://github.com/cuviper/equivalent
Authors: equivalent authors
License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: errno
Repository: https://github.com/lambda-fairy/rust-errno
Authors: Chris Wong
Expand Down Expand Up @@ -206,13 +199,6 @@ License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: hashbrown
Repository: https://github.com/rust-lang/hashbrown
Authors: Amanieu d'Antras
License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: heck
Repository: https://github.com/withoutboats/heck
Authors: Without Boats
Expand All @@ -227,13 +213,6 @@ License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: indexmap
Repository: https://github.com/bluss/indexmap
Authors: indexmap authors
License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: is-terminal
Repository: https://github.com/sunfishcode/is-terminal
Authors: softprops, Dan Gohman
Expand Down Expand Up @@ -353,13 +332,27 @@ License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: prql-ast
Repository: https://github.com/PRQL/prql
Authors: prql-ast authors
License: Apache-2.0

-------------------------------------------------------------

Name: prql-compiler
Repository: https://github.com/PRQL/prql
Authors: prql-compiler authors
License: Apache-2.0

-------------------------------------------------------------

Name: prql-parser
Repository: https://github.com/PRQL/prql
Authors: prql-parser authors
License: Apache-2.0

-------------------------------------------------------------

Name: psm
Repository: https://github.com/rust-lang/stacker/
Authors: Simonas Kazlauskas
Expand All @@ -376,14 +369,21 @@ License: Apache-2.0 OR MIT

Name: regex
Repository: https://github.com/rust-lang/regex
Authors: The Rust Project Developers
Authors: The Rust Project Developers, Andrew Gallant
License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: regex-automata
Repository: https://github.com/rust-lang/regex/tree/master/regex-automata
Authors: The Rust Project Developers, Andrew Gallant
License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: regex-syntax
Repository: https://github.com/rust-lang/regex
Authors: The Rust Project Developers
Repository: https://github.com/rust-lang/regex/tree/master/regex-syntax
Authors: The Rust Project Developers, Andrew Gallant
License: Apache-2.0 OR MIT

-------------------------------------------------------------
Expand Down Expand Up @@ -432,7 +432,7 @@ License: Apache-2.0 OR MIT

Name: serde_derive
Repository: https://github.com/serde-rs/serde
Authors: Erick Tryzelaar, David Tolnay
Authors: David Tolnay
License: Apache-2.0 OR MIT

-------------------------------------------------------------
Expand All @@ -444,13 +444,6 @@ License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: serde_yaml
Repository: https://github.com/dtolnay/serde-yaml
Authors: David Tolnay
License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: sqlformat
Repository: https://github.com/shssoichiro/sqlformat-rs
Authors: Josh Holmer
Expand Down Expand Up @@ -521,13 +514,6 @@ License: Apache-2.0 OR MIT

-------------------------------------------------------------

Name: unsafe-libyaml
Repository: https://github.com/dtolnay/unsafe-libyaml
Authors: David Tolnay
License: MIT

-------------------------------------------------------------

Name: utf8parse
Repository: https://github.com/alacritty/vte
Authors: Joe Wilm, Christian Duerr
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Breaking changes

- Based on [`prql-compiler`](https://github.com/prql/prql) 0.9.0 (#130, #137, #142)
- Based on [`prql-compiler`](https://github.com/prql/prql) 0.9.2 (#130, #137, #142, #145)

## Bug fixes

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ R bindings for [the `prql-compiler` Rust
library](https://github.com/prql/prql), powered by [the `extendr`
framework](https://extendr.github.io/).

This version supports PRQL 0.8.1.
This version supports PRQL 0.9.2.

## Installation

Expand Down Expand Up @@ -54,7 +54,7 @@ library(prqlr)
#> WHERE
#> cyl > 6
#>
#> -- Generated by PRQL compiler version:0.8.1 (https://prql-lang.org)
#> -- Generated by PRQL compiler version:0.9.2 (https://prql-lang.org)
```

PRQL’s pipelines can be joined by the newline character (`\n`), or
Expand All @@ -72,7 +72,7 @@ actual newlines in addition to `|`.
#> WHERE
#> cyl > 6
#>
#> -- Generated by PRQL compiler version:0.8.1 (https://prql-lang.org)
#> -- Generated by PRQL compiler version:0.9.2 (https://prql-lang.org)
```

``` r
Expand All @@ -89,7 +89,7 @@ select {cyl, mpg}" |>
#> WHERE
#> cyl > 6
#>
#> -- Generated by PRQL compiler version:0.8.1 (https://prql-lang.org)
#> -- Generated by PRQL compiler version:0.9.2 (https://prql-lang.org)
```

Thanks to the `{tidyquery}` package, we can even convert a PRQL query to
Expand Down
Loading