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

release: version 0.10.0 #339

Merged
merged 5 commits into from
Jan 29, 2025
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
6 changes: 3 additions & 3 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Version: 0.9.0
Date: 2024-09-19 15:14:05 UTC
SHA: 9bcc6ef530582844da1e8c8b5e3faa8477a5ecd2
Version: 0.10.0
Date: 2025-01-28 15:12:31 UTC
SHA: 09c7b87e0eabd77e0b7f2c74995fa79e27f2a176
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Description:
Provides a function to convert 'PRQL' strings to 'SQL' strings.
Combined with other R functions that take 'SQL' as an argument,
'PRQL' can be used on R.
Version: 0.9.0.9000
Version: 0.10.0.9000
Authors@R:
c(person("Tatsuya", "Shima", email = "[email protected]", role = c("aut", "cre")),
person("Authors of the dependency Rust crates", role = "aut",
Expand Down
3 changes: 3 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# prqlr (development version)

# prqlr 0.10.0

## Breaking changes

- For the `prql_compile()` funtion, arguments `format` and `singnature_comment` should be named arguments. (#317)

## New features

- New experimental argument `display` of `prql_compile()` function to colorize the error message from prqlc. (#317)
- Based on [`prqlc`](https://github.com/prql/prql) 0.13.3 (#336)

# prqlr 0.9.0

Expand Down
6 changes: 3 additions & 3 deletions tests/testthat/_snaps/compile.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

-- Generated by PRQL compiler version:0.13.3 target:sql.duckdb (https://prql-lang.org)

# Syntax error query=Mississippi has four S’s and four I’s., .interpret_glue=FALSE
# Syntax error query=Mississippi has four S’s and four I’s.

Code
cat(prql_compile(query, "sql.any", format = TRUE, signature_comment = FALSE))
Expand Down Expand Up @@ -60,7 +60,7 @@
│ ╰─ Expected * or an identifier, but didn't find anything before the end.
───╯

# Syntax error query=from a | select [b], .interpret_glue=FALSE
# Syntax error query=from a | select [b]

Code
cat(prql_compile(query, "sql.any", format = TRUE, signature_comment = FALSE))
Expand All @@ -74,7 +74,7 @@
│ ╰─── unexpected array of values (not supported here)
───╯

# Syntax error query=from a | select {{{b, .interpret_glue=FALSE
# Syntax error query=from a | select {{{b

Code
cat(prql_compile(query, "sql.any", format = TRUE, signature_comment = FALSE))
Expand Down
Loading