This is an automated email from the ASF dual-hosted git repository.
paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-adbc.git
The following commit(s) were added to refs/heads/main by this push:
new a4bf0bfa chore(r): Package-level CRAN preparation chores (#1013)
a4bf0bfa is described below
commit a4bf0bfa6e2ba75cd7580acf2798c122ff2a35b1
Author: Dewey Dunnington <[email protected]>
AuthorDate: Wed Aug 30 11:42:01 2023 -0300
chore(r): Package-level CRAN preparation chores (#1013)
For #1009, #1010, #1011, and #1012.
Ideally I would have done these chores before 0.6.0; however, because
three of these are first-time CRAN submissions that require a human,
there will probably be a few more PRs that need to be picked into that
branch.
---
dev/release/rat_exclude_files.txt | 1 +
r/adbcdrivermanager/NEWS.md | 7 +++++++
r/adbcdrivermanager/cran-comments.md | 7 ++++---
r/adbcflightsql/.Rbuildignore | 1 +
r/adbcflightsql/NEWS.md | 3 +++
r/adbcflightsql/README.Rmd | 6 ++++++
r/adbcflightsql/README.md | 7 +++++++
r/adbcflightsql/cran-comments.md | 9 +++++++++
r/adbcpostgresql/.Rbuildignore | 1 +
r/adbcpostgresql/NEWS.md | 3 +++
r/adbcpostgresql/README.Rmd | 6 ++++++
r/adbcpostgresql/README.md | 7 +++++++
r/adbcpostgresql/cran-comments.md | 9 +++++++++
r/adbcsqlite/.Rbuildignore | 1 +
r/adbcsqlite/NEWS.md | 3 +++
r/adbcsqlite/README.Rmd | 6 ++++++
r/adbcsqlite/README.md | 7 +++++++
r/adbcsqlite/cran-comments.md | 9 +++++++++
18 files changed, 90 insertions(+), 3 deletions(-)
diff --git a/dev/release/rat_exclude_files.txt
b/dev/release/rat_exclude_files.txt
index 644ab507..9e95dcfc 100644
--- a/dev/release/rat_exclude_files.txt
+++ b/dev/release/rat_exclude_files.txt
@@ -25,6 +25,7 @@ python/*/*/py.typed
rat.txt
r/*/DESCRIPTION
r/*/NAMESPACE
+r/*/NEWS.md
r/*/cran-comments.md
r/*/.Rbuildignore
r/*/tests/testthat/_snaps/*
diff --git a/r/adbcdrivermanager/NEWS.md b/r/adbcdrivermanager/NEWS.md
new file mode 100644
index 00000000..0f69dca3
--- /dev/null
+++ b/r/adbcdrivermanager/NEWS.md
@@ -0,0 +1,7 @@
+# adbcdrivermanager 0.6.0
+
+- **r**: Ensure that info_codes are coerced to integer (#986)
+
+# adbcdrivermanager 0.5.0
+
+* Added a `NEWS.md` file to track changes to the package.
diff --git a/r/adbcdrivermanager/cran-comments.md
b/r/adbcdrivermanager/cran-comments.md
index e3b0ab85..906efef7 100644
--- a/r/adbcdrivermanager/cran-comments.md
+++ b/r/adbcdrivermanager/cran-comments.md
@@ -1,6 +1,7 @@
-## R CMD check results
+An update to reflect the updated upstream sources for the latest
+Apache Arrow ADBC libraries version.
-0 errors | 0 warnings | 1 note
+## R CMD check results
-* This is a new release.
+0 errors | 0 warnings | 0 notes
diff --git a/r/adbcflightsql/.Rbuildignore b/r/adbcflightsql/.Rbuildignore
index 389c04f5..1d0408c5 100644
--- a/r/adbcflightsql/.Rbuildignore
+++ b/r/adbcflightsql/.Rbuildignore
@@ -10,3 +10,4 @@
^_pkgdown\.yml$
^docs$
^pkgdown$
+^cran-comments\.md$
diff --git a/r/adbcflightsql/NEWS.md b/r/adbcflightsql/NEWS.md
new file mode 100644
index 00000000..a2980eac
--- /dev/null
+++ b/r/adbcflightsql/NEWS.md
@@ -0,0 +1,3 @@
+# adbcflightsql 0.6.0
+
+* Initial CRAN submission.
diff --git a/r/adbcflightsql/README.Rmd b/r/adbcflightsql/README.Rmd
index 759e8992..97f0e2a5 100644
--- a/r/adbcflightsql/README.Rmd
+++ b/r/adbcflightsql/README.Rmd
@@ -40,6 +40,12 @@ to the Arrow Database Connectivity (ADBC) FlightSQL driver.
## Installation
+You can install the released version of adbcflightsql from
[CRAN](https://cran.r-project.org/) with:
+
+```r
+install.packages("adbcflightsql")
+```
+
You can install the development version of adbcflightsql from
[GitHub](https://github.com/) with:
``` r
diff --git a/r/adbcflightsql/README.md b/r/adbcflightsql/README.md
index e61bfc02..35252942 100644
--- a/r/adbcflightsql/README.md
+++ b/r/adbcflightsql/README.md
@@ -27,6 +27,13 @@ interface to the Arrow Database Connectivity (ADBC)
FlightSQL driver.
## Installation
+You can install the released version of adbcflightsql from
+[CRAN](https://cran.r-project.org/) with:
+
+``` r
+install.packages("adbcflightsql")
+```
+
You can install the development version of adbcflightsql from
[GitHub](https://github.com/) with:
diff --git a/r/adbcflightsql/cran-comments.md b/r/adbcflightsql/cran-comments.md
new file mode 100644
index 00000000..2d2bbbdc
--- /dev/null
+++ b/r/adbcflightsql/cran-comments.md
@@ -0,0 +1,9 @@
+
+An update to reflect the updated upstream sources for the latest
+Apache Arrow ADBC libraries version.
+
+## R CMD check results
+
+0 errors | 0 warnings | 1 note
+
+* This is a new release.
diff --git a/r/adbcpostgresql/.Rbuildignore b/r/adbcpostgresql/.Rbuildignore
index 70ce6665..2525a88a 100644
--- a/r/adbcpostgresql/.Rbuildignore
+++ b/r/adbcpostgresql/.Rbuildignore
@@ -13,3 +13,4 @@
^_pkgdown\.yml$
^docs$
^pkgdown$
+^cran-comments\.md$
diff --git a/r/adbcpostgresql/NEWS.md b/r/adbcpostgresql/NEWS.md
new file mode 100644
index 00000000..842387e4
--- /dev/null
+++ b/r/adbcpostgresql/NEWS.md
@@ -0,0 +1,3 @@
+# adbcpostgresql 0.6.0
+
+* Initial CRAN submission.
diff --git a/r/adbcpostgresql/README.Rmd b/r/adbcpostgresql/README.Rmd
index d34b37be..cc68887b 100644
--- a/r/adbcpostgresql/README.Rmd
+++ b/r/adbcpostgresql/README.Rmd
@@ -40,6 +40,12 @@ to the Arrow Database Connectivity (ADBC) PostgreSQL driver.
## Installation
+You can install the released version of adbcpostgresql from
[CRAN](https://cran.r-project.org/) with:
+
+```r
+install.packages("adbcpostgresql")
+```
+
You can install the development version of adbcpostgresql from
[GitHub](https://github.com/) with:
``` r
diff --git a/r/adbcpostgresql/README.md b/r/adbcpostgresql/README.md
index b91d2e3e..b902cc8c 100644
--- a/r/adbcpostgresql/README.md
+++ b/r/adbcpostgresql/README.md
@@ -27,6 +27,13 @@ interface to the Arrow Database Connectivity (ADBC)
PostgreSQL driver.
## Installation
+You can install the released version of adbcpostgresql from
+[CRAN](https://cran.r-project.org/) with:
+
+``` r
+install.packages("adbcpostgresql")
+```
+
You can install the development version of adbcpostgresql from
[GitHub](https://github.com/) with:
diff --git a/r/adbcpostgresql/cran-comments.md
b/r/adbcpostgresql/cran-comments.md
new file mode 100644
index 00000000..2d2bbbdc
--- /dev/null
+++ b/r/adbcpostgresql/cran-comments.md
@@ -0,0 +1,9 @@
+
+An update to reflect the updated upstream sources for the latest
+Apache Arrow ADBC libraries version.
+
+## R CMD check results
+
+0 errors | 0 warnings | 1 note
+
+* This is a new release.
diff --git a/r/adbcsqlite/.Rbuildignore b/r/adbcsqlite/.Rbuildignore
index e96b9e14..7a0fc58e 100644
--- a/r/adbcsqlite/.Rbuildignore
+++ b/r/adbcsqlite/.Rbuildignore
@@ -10,3 +10,4 @@
^_pkgdown\.yml$
^docs$
^pkgdown$
+^cran-comments\.md$
diff --git a/r/adbcsqlite/NEWS.md b/r/adbcsqlite/NEWS.md
new file mode 100644
index 00000000..f77c65de
--- /dev/null
+++ b/r/adbcsqlite/NEWS.md
@@ -0,0 +1,3 @@
+# adbcsqlite 0.6.0
+
+* Initial CRAN submission.
diff --git a/r/adbcsqlite/README.Rmd b/r/adbcsqlite/README.Rmd
index a59c1ffc..ffcaee35 100644
--- a/r/adbcsqlite/README.Rmd
+++ b/r/adbcsqlite/README.Rmd
@@ -40,6 +40,12 @@ to the Arrow Database Connectivity (ADBC) SQLite driver.
## Installation
+You can install the released version of adbcsqlite from
[CRAN](https://cran.r-project.org/) with:
+
+```r
+install.packages("adbcsqlite")
+```
+
You can install the development version of adbcsqlite from
[GitHub](https://github.com/) with:
``` r
diff --git a/r/adbcsqlite/README.md b/r/adbcsqlite/README.md
index d5d8eb73..f04f07cb 100644
--- a/r/adbcsqlite/README.md
+++ b/r/adbcsqlite/README.md
@@ -27,6 +27,13 @@ interface to the Arrow Database Connectivity (ADBC) SQLite
driver.
## Installation
+You can install the released version of adbcsqlite from
+[CRAN](https://cran.r-project.org/) with:
+
+``` r
+install.packages("adbcsqlite")
+```
+
You can install the development version of adbcsqlite from
[GitHub](https://github.com/) with:
diff --git a/r/adbcsqlite/cran-comments.md b/r/adbcsqlite/cran-comments.md
new file mode 100644
index 00000000..2d2bbbdc
--- /dev/null
+++ b/r/adbcsqlite/cran-comments.md
@@ -0,0 +1,9 @@
+
+An update to reflect the updated upstream sources for the latest
+Apache Arrow ADBC libraries version.
+
+## R CMD check results
+
+0 errors | 0 warnings | 1 note
+
+* This is a new release.