Skip to content

Commit

Permalink
switch to dev version of rhub [no ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
coolbutuseless committed Apr 10, 2024
1 parent 9ba790e commit c073cb3
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 15 deletions.
36 changes: 26 additions & 10 deletions .github/workflows/rhub.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# R-hub's genetic GitHub Actions workflow file. It's canonical location is at
# https://github.com/r-hub/rhub2/blob/v1/inst/workflow/rhub.yaml
# R-hub's generic GitHub Actions workflow file. It's canonical location is at
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml
# You can update this file to a newer version using the rhub2 package:
#
# rhub2::rhub_setup()
# rhub::rhub_setup()
#
# It is unlikely that you need to modify this file manually.

name: R-hub
run-name: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }} (${{ github.event.inputs.id }})
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}"

on:
workflow_dispatch:
Expand All @@ -33,7 +33,7 @@ jobs:

steps:
# NO NEED TO CHECKOUT HERE
- uses: r-hub/rhub2/actions/rhub-setup@v1
- uses: r-hub/actions/setup@v1
with:
config: ${{ github.event.inputs.config }}
id: rhub-setup
Expand All @@ -51,8 +51,16 @@ jobs:
image: ${{ matrix.config.container }}

steps:
- uses: actions/checkout@v3
- uses: r-hub/rhub2/actions/rhub-check@v1
- uses: r-hub/actions/checkout@v1
- uses: r-hub/actions/platform-info@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/setup-deps@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/run-check@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
Expand All @@ -68,12 +76,20 @@ jobs:
config: ${{ fromJson(needs.setup.outputs.platforms) }}

steps:
- uses: actions/checkout@v3
- uses: r-hub/rhub2/actions/rhub-setup-r@v1
- uses: r-hub/actions/checkout@v1
- uses: r-hub/actions/setup-r@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
- uses: r-hub/actions/platform-info@v1
with:
token: ${{ secrets.RHUB_TOKEN }}
job-config: ${{ matrix.config.job-config }}
- uses: r-hub/actions/setup-deps@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
- uses: r-hub/rhub2/actions/rhub-check@v1
- uses: r-hub/actions/run-check@v1
with:
job-config: ${{ matrix.config.job-config }}
token: ${{ secrets.RHUB_TOKEN }}
11 changes: 6 additions & 5 deletions DESCRIPTION
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>.
Expand Down
5 changes: 5 additions & 0 deletions NEWS.md
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.
Expand Down

0 comments on commit c073cb3

Please sign in to comment.