Skip to content

Commit

Permalink
feat!: based on the released version of prql-compiler 0.9.2 (#145)
Browse files Browse the repository at this point in the history
Close #49
  • Loading branch information
eitsupi committed Jul 25, 2023
1 parent 42cd630 commit 84c0008
Show file tree
Hide file tree
Showing 8 changed files with 121 additions and 140 deletions.
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

0 comments on commit 84c0008

Please sign in to comment.