Skip to content

Commit bdfe4ea

Browse files
authored
release: version 0.10.0 (#339)
1 parent dbb1d64 commit bdfe4ea

File tree

4 files changed

+10
-7
lines changed

4 files changed

+10
-7
lines changed

CRAN-SUBMISSION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Version: 0.9.0
2-
Date: 2024-09-19 15:14:05 UTC
3-
SHA: 9bcc6ef530582844da1e8c8b5e3faa8477a5ecd2
1+
Version: 0.10.0
2+
Date: 2025-01-28 15:12:31 UTC
3+
SHA: 09c7b87e0eabd77e0b7f2c74995fa79e27f2a176

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Description:
44
Provides a function to convert 'PRQL' strings to 'SQL' strings.
55
Combined with other R functions that take 'SQL' as an argument,
66
'PRQL' can be used on R.
7-
Version: 0.9.0.9000
7+
Version: 0.10.0.9000
88
Authors@R:
99
c(person("Tatsuya", "Shima", email = "[email protected]", role = c("aut", "cre")),
1010
person("Authors of the dependency Rust crates", role = "aut",

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
# prqlr (development version)
22

3+
# prqlr 0.10.0
4+
35
## Breaking changes
46

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

79
## New features
810

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

1114
# prqlr 0.9.0
1215

tests/testthat/_snaps/compile.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
3333
-- Generated by PRQL compiler version:0.13.3 target:sql.duckdb (https://prql-lang.org)
3434

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

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

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

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

77-
# Syntax error query=from a | select {{{b, .interpret_glue=FALSE
77+
# Syntax error query=from a | select {{{b
7878

7979
Code
8080
cat(prql_compile(query, "sql.any", format = TRUE, signature_comment = FALSE))

0 commit comments

Comments
 (0)