Skip to content

Commit

Permalink
release 0.5.0 (#107)
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel authored Mar 17, 2020
1 parent 02cd3f3 commit cf49aee
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 43 deletions.
8 changes: 6 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,10 +1,14 @@
Package: tiledb
Type: Package
Title: Sparse and Dense Multidimensional Array Data Management
Version: 0.4.0
Version: 0.5.0
Author: TileDB <help@tiledb.com>
Maintainer: TileDB <help@tiledb.com>
Description: The efficient multi-dimensional array management system 'TileDB' introduces a novel on-disk format that can effectively store dense and sparse array data with support for fast updates and reads. It features excellent compression, an efficient parallel I/O system which also scales well, and bindings to multiple languages.
Description: The efficient multi-dimensional array management system
'TileDB' introduces a novel on-disk format that can effectively store
dense and sparse array data with support for fast updates and
reads. It features excellent compression, an efficient parallel I/O
system which also scales well, and bindings to multiple languages.
License: MIT + file LICENSE
URL: https://github.com/TileDB-Inc/TileDB-R
BugReports: https://github.com/TileDB-Inc/TileDB-R/issues
Expand Down
16 changes: 10 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@

# TileDB-R

The TileDB R package offers an [R](https://www.r-project.org/) interface to the [storage engine](https://github.com/TileDB-Inc/TileDB) of [TileDB](https://tiledb.com/).
The TileDB R package offers an [R](https://www.r-project.org/) interface to the [storage
engine](https://github.com/TileDB-Inc/TileDB) of [TileDB](https://tiledb.com/).

Note that the R interface to TileDB is under development, and the API is subject to change.

Expand All @@ -22,15 +23,17 @@ for the TileDB R package to build and link correctly:
> library(tiledb)
> tiledb_version()
major minor patch
1 7 6
1 7 5
> help(package=tiledb)

## Installation

As the TileDB R package has not been published on [CRAN](https://cran.r-project.org/),
it must be installed from source.
As the TileDB R package has not been published on [CRAN](https://cran.r-project.org/), it must be
installed from source.

The most recent released version can be installed from [Github](https://github.com/TileDB-Inc/TileDB-R) using the package [remotes](https://cran.r-project.org/package=remotes).
The most recent released version can be installed from
[Github](https://github.com/TileDB-Inc/TileDB-R) using the package
[remotes](https://cran.r-project.org/package=remotes).

install.packages("remotes")
library(remotes)
Expand All @@ -41,7 +44,8 @@ If the TileDB library is installed in a custom location, you need to pass the ex
remotes::install_github("TileDB-Inc/TileDB-R",
args="--configure-args='--with-tiledb=/path/to/tiledb'")

Note that the TileDB R package is developed and tested against the latest stable (`v1.7.x`) version of TileDB, but should also build against the newest development version.
Note that the TileDB R package is developed and tested against the latest stable (`v1.7.x`) version
of TileDB, but should also build against the newest development version.

## Quick Links

Expand Down
2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

53 changes: 21 additions & 32 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 16 additions & 1 deletion inst/NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,22 @@

# 0.5.0

* This release of the R package builds against the 1.7.5 releases of TileDB.

## Improvements

- Added support for i) multi-range subarrays, ii) incomplete queries,
iii) result size estimation and 'time travel' at to time-points has been
added [#105](https://github.com/TileDB-Inc/TileDB-R/pull/105)

- Added additional support for metadata [#106](https://github.com/TileDB-Inc/TileDB-R/pull/105)


# 0.4.0

* This release of the R package builds against the 1.7.* releases of tiledb.

* This release contains increased coverage of the underlying API, additional
## Improvements

- This release contains increased coverage of the underlying API, additional
documentation as well as unit tests.

0 comments on commit cf49aee

Please sign in to comment.