Skip to content
Closed
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
28 changes: 14 additions & 14 deletions r/DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ Title: Integration to 'Apache' 'Arrow'
Version: 0.13.0.9000
Authors@R: c(
person("Romain", "Fran\u00e7ois", email = "romain@rstudio.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0002-2444-4226")),
person("Javier", "Luraschi", email = "javier@rstudio.com", role = c("ctb")),
person("Jeffrey", "Wong", email = "jeffreyw@netflix.com", role = c("ctb")),
person("Jeroen", "Ooms", email = "jeroen@berkeley.edu", role = c("aut")),
person("Neal", "Richardson", email = "neal@ursalabs.org", role = c("aut")),
person("Javier", "Luraschi", email = "javier@rstudio.com", role = c("ctb")),
person("Jeffrey", "Wong", email = "jeffreyw@netflix.com", role = c("ctb")),
person("Apache Arrow", email = "dev@arrow.apache.org", role = c("aut", "cph"))
)
Description: 'Apache' 'Arrow' <https://arrow.apache.org/> is a cross-language
Expand All @@ -16,35 +16,35 @@ Description: 'Apache' 'Arrow' <https://arrow.apache.org/> is a cross-language
package provides an interface to the Arrow C++ library.
Depends: R (>= 3.1)
License: Apache License (>= 2.0)
URL: https://arrow.apache.org/docs/r/, https://github.com/apache/arrow/
URL: https://github.com/apache/arrow/
BugReports: https://issues.apache.org/jira/projects/ARROW/issues
Encoding: UTF-8
LazyData: true
SystemRequirements: C++11
LinkingTo:
Rcpp (>= 1.0.1)
Imports:
utils,
Rcpp (>= 1.0.1),
rlang,
purrr,
assertthat,
R6,
fs,
bit64,
tidyselect
fs,
purrr,
R6,
Rcpp (>= 1.0.1),
rlang,
tidyselect,
utils
Roxygen: list(markdown = TRUE)
RoxygenNote: 6.1.1
Suggests:
tibble,
covr,
hms,
lubridate,
pkgdown,
rmarkdown,
roxygen2,
testthat,
lubridate,
vctrs,
hms
tibble,
vctrs
Collate:
'enums.R'
'R6.R'
Expand Down
2 changes: 2 additions & 0 deletions r/NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -162,13 +162,15 @@ export(parquet_arrow_reader_properties)
export(parquet_file_reader)
export(read_arrow)
export(read_csv_arrow)
export(read_delim_arrow)
export(read_feather)
export(read_json_arrow)
export(read_message)
export(read_parquet)
export(read_record_batch)
export(read_schema)
export(read_table)
export(read_tsv_arrow)
export(record_batch)
export(schema)
export(starts_with)
Expand Down
26 changes: 26 additions & 0 deletions r/NEWS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!---
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->

# arrow 0.13.0.9000
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should this be here?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It should. https://issues.apache.org/jira/browse/ARROW-5415 will update it to the release version in dev/release/00-prepare.sh. I have a branch for that based on this one.

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


Initial CRAN release of the `arrow` package. Key features include:

* Read and write support for various file formats, including Parquet, Feather/Arrow, CSV, and JSON.
* API bindings to the C++ library for Arrow data types and objects, as well as mapping between Arrow types and R data types.
* Tools for helping with C++ library configuration and installation.
Loading