From 29fa90616853e431f71b18935a0fd42f4197cff3 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Tue, 28 Jan 2025 14:37:56 +0000 Subject: [PATCH 1/5] docs(news): update NEWS.md --- NEWS.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEWS.md b/NEWS.md index 429814a..9bed804 100644 --- a/NEWS.md +++ b/NEWS.md @@ -7,6 +7,7 @@ ## 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 From 194f31de6f214c8ccc969178c378bcb32642a5af Mon Sep 17 00:00:00 2001 From: eitsupi Date: Tue, 28 Jan 2025 14:38:46 +0000 Subject: [PATCH 2/5] chore: increment version number to 0.10.0 --- DESCRIPTION | 2 +- NEWS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index e97da65..600c4c4 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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 Authors@R: c(person("Tatsuya", "Shima", email = "ts1s1andn@gmail.com", role = c("aut", "cre")), person("Authors of the dependency Rust crates", role = "aut", diff --git a/NEWS.md b/NEWS.md index 9bed804..8046c4e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# prqlr (development version) +# prqlr 0.10.0 ## Breaking changes From 09c7b87e0eabd77e0b7f2c74995fa79e27f2a176 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Tue, 28 Jan 2025 14:49:21 +0000 Subject: [PATCH 3/5] chore: regen files with the latest deps --- tests/testthat/_snaps/compile.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/testthat/_snaps/compile.md b/tests/testthat/_snaps/compile.md index efb73e4..ee1b18f 100644 --- a/tests/testthat/_snaps/compile.md +++ b/tests/testthat/_snaps/compile.md @@ -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)) @@ -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)) @@ -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)) From b373410c792fb4489ae1f48ca389f8e1ef5d6752 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Tue, 28 Jan 2025 15:12:57 +0000 Subject: [PATCH 4/5] chore: add CRAN-SUBMISSION --- CRAN-SUBMISSION | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CRAN-SUBMISSION b/CRAN-SUBMISSION index ee997e2..312c6a4 100644 --- a/CRAN-SUBMISSION +++ b/CRAN-SUBMISSION @@ -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 From 0c5fc3102237f05d40d416ee4076586c15a6800f Mon Sep 17 00:00:00 2001 From: eitsupi Date: Wed, 29 Jan 2025 12:11:13 +0000 Subject: [PATCH 5/5] chore: increment version number to 0.10.0.9000 --- DESCRIPTION | 2 +- NEWS.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 600c4c4..e4d7b2c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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.10.0 +Version: 0.10.0.9000 Authors@R: c(person("Tatsuya", "Shima", email = "ts1s1andn@gmail.com", role = c("aut", "cre")), person("Authors of the dependency Rust crates", role = "aut", diff --git a/NEWS.md b/NEWS.md index 8046c4e..685a860 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,5 @@ +# prqlr (development version) + # prqlr 0.10.0 ## Breaking changes