-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
switch to dev version of rhub [no ci]
- Loading branch information
1 parent
9ba790e
commit c073cb3
Showing
3 changed files
with
37 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,19 @@ | ||
Package: yyjsonr | ||
Type: Package | ||
Title: Fast JSON, NDJSON and GeoJSON Parser and Generator | ||
Version: 0.1.18.9007 | ||
Title: Fast 'JSON', 'NDJSON' and 'GeoJSON' Parser and Generator | ||
Version: 0.1.19 | ||
Authors@R: c( | ||
person("Mike", "Cheng", role = c("aut", "cre", 'cph'), | ||
email = "[email protected]"), | ||
person("Yao", "Yuan", role = c("aut", "cph"), email = "[email protected]", | ||
comment="Author of bundled yyjson")) | ||
Maintainer: Mike Cheng <[email protected]> | ||
Description: A fast JSON parser, generator and validator which converts JSON, | ||
NDJSON and GeoJSON data to/from R objects. The standard R data types are | ||
Description: A fast 'JSON' parser, generator and validator which converts 'JSON', | ||
'NDJSON' (Newline Delimited 'JSON') and 'GeoJSON' (Geographic 'JSON') data | ||
to/from R objects. The standard R data types are | ||
supported (e.g. logical, numeric, integer) with configurable handling of NULL | ||
and NA values. Data frames, atomic vectors and lists are all supported as data | ||
containers translated to/from JSON. GeoJSON data is read in as | ||
containers translated to/from 'JSON'. 'GeoJSON' data is read in as | ||
'simple features' objects. | ||
This implementation wraps the 'yyjson' 'C' library which | ||
is available from <https://github.com/ibireme/yyjson>. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
|
||
|
||
# yyjsonr 0.1.19 2024-04-10 | ||
|
||
* Release to CRAN | ||
|
||
# yyjsonr 0.1.18.9007 2024-04-09 | ||
|
||
* Fix some compilation warnings. | ||
|