Skip to content

Commit 47f8039

Browse files
committed
Prepare for release
1 parent 339f08e commit 47f8039

14 files changed

+102
-9
lines changed

.github/workflows/rhub.yaml

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# R-hub's generic GitHub Actions workflow file. It's canonical location is at
2+
# https://github.com/r-hub/actions/blob/v1/workflows/rhub.yaml
3+
# You can update this file to a newer version using the rhub2 package:
4+
#
5+
# rhub::rhub_setup()
6+
#
7+
# It is unlikely that you need to modify this file manually.
8+
9+
name: R-hub
10+
run-name: "${{ github.event.inputs.id }}: ${{ github.event.inputs.name || format('Manually run by {0}', github.triggering_actor) }}"
11+
12+
on:
13+
workflow_dispatch:
14+
inputs:
15+
config:
16+
description: 'A comma separated list of R-hub platforms to use.'
17+
type: string
18+
default: 'linux,windows,macos'
19+
name:
20+
description: 'Run name. You can leave this empty now.'
21+
type: string
22+
id:
23+
description: 'Unique ID. You can leave this empty now.'
24+
type: string
25+
26+
jobs:
27+
28+
setup:
29+
runs-on: ubuntu-latest
30+
outputs:
31+
containers: ${{ steps.rhub-setup.outputs.containers }}
32+
platforms: ${{ steps.rhub-setup.outputs.platforms }}
33+
34+
steps:
35+
# NO NEED TO CHECKOUT HERE
36+
- uses: r-hub/actions/setup@v1
37+
with:
38+
config: ${{ github.event.inputs.config }}
39+
id: rhub-setup
40+
41+
linux-containers:
42+
needs: setup
43+
if: ${{ needs.setup.outputs.containers != '[]' }}
44+
runs-on: ubuntu-latest
45+
name: ${{ matrix.config.label }}
46+
strategy:
47+
fail-fast: false
48+
matrix:
49+
config: ${{ fromJson(needs.setup.outputs.containers) }}
50+
container:
51+
image: ${{ matrix.config.container }}
52+
53+
steps:
54+
- uses: r-hub/actions/checkout@v1
55+
- uses: r-hub/actions/platform-info@v1
56+
with:
57+
token: ${{ secrets.RHUB_TOKEN }}
58+
job-config: ${{ matrix.config.job-config }}
59+
- uses: r-hub/actions/setup-deps@v1
60+
with:
61+
token: ${{ secrets.RHUB_TOKEN }}
62+
job-config: ${{ matrix.config.job-config }}
63+
- uses: r-hub/actions/run-check@v1
64+
with:
65+
token: ${{ secrets.RHUB_TOKEN }}
66+
job-config: ${{ matrix.config.job-config }}
67+
68+
other-platforms:
69+
needs: setup
70+
if: ${{ needs.setup.outputs.platforms != '[]' }}
71+
runs-on: ${{ matrix.config.os }}
72+
name: ${{ matrix.config.label }}
73+
strategy:
74+
fail-fast: false
75+
matrix:
76+
config: ${{ fromJson(needs.setup.outputs.platforms) }}
77+
78+
steps:
79+
- uses: r-hub/actions/checkout@v1
80+
- uses: r-hub/actions/setup-r@v1
81+
with:
82+
job-config: ${{ matrix.config.job-config }}
83+
token: ${{ secrets.RHUB_TOKEN }}
84+
- uses: r-hub/actions/platform-info@v1
85+
with:
86+
token: ${{ secrets.RHUB_TOKEN }}
87+
job-config: ${{ matrix.config.job-config }}
88+
- uses: r-hub/actions/setup-deps@v1
89+
with:
90+
job-config: ${{ matrix.config.job-config }}
91+
token: ${{ secrets.RHUB_TOKEN }}
92+
- uses: r-hub/actions/run-check@v1
93+
with:
94+
job-config: ${{ matrix.config.job-config }}
95+
token: ${{ secrets.RHUB_TOKEN }}
96+

CITATION.cff

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ message: 'To cite package "tidyterra" in publications use:'
88
type: software
99
license: MIT
1010
title: 'tidyterra: ''tidyverse'' Methods and ''ggplot2'' Helpers for ''terra'' Objects'
11-
version: 0.5.2.9000
11+
version: 0.6.0
1212
doi: 10.21105/joss.05751
1313
abstract: Extension of the 'tidyverse' for 'SpatRaster' and 'SpatVector' objects of
1414
the 'terra' package. It includes also new 'geom_' functions that provide a convenient

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: tidyterra
22
Title: 'tidyverse' Methods and 'ggplot2' Helpers for 'terra' Objects
3-
Version: 0.5.2.9000
3+
Version: 0.6.0
44
Authors@R: c(
55
person("Diego", "Hernangómez", , "[email protected]", role = c("aut", "cre", "cph"),
66
comment = c(ORCID = "0000-0001-8457-4658")),

NEWS.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tidyterra (development version)
1+
# tidyterra 0.6.0
22

33
- Requires **ggplot2** (\>= 3.5.0).
44
- New methods for `SpatVector` objects:

README.md

-3
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ A BibTeX entry for LaTeX users is:
6666
Full manual of the most recent release of **tidyterra** on **CRAN** is
6767
online: <https://dieghernan.github.io/tidyterra/>
6868

69-
You can have a look to the documentation of the dev version in
70-
<https://dieghernan.github.io/tidyterra/dev/>
71-
7269
**tidyverse** methods implemented on **tidyterra** works differently
7370
depending on the type of `Spat*` object:
7471

codemeta.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"codeRepository": "https://github.com/dieghernan/tidyterra",
99
"issueTracker": "https://github.com/dieghernan/tidyterra/issues",
1010
"license": "https://spdx.org/licenses/MIT",
11-
"version": "0.5.2.9000",
11+
"version": "0.6.0",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",
@@ -344,7 +344,7 @@
344344
"SystemRequirements": null
345345
},
346346
"keywords": ["r", "terra", "ggplot-extension", "r-spatial", "rspatial", "r-package", "rstats", "rstats-package", "cran", "cran-r"],
347-
"fileSize": "2289.901KB",
347+
"fileSize": "2289.35KB",
348348
"citation": [
349349
{
350350
"@type": "ScholarlyArticle",

inst/schemaorg.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@
3939
"url": "https://cran.r-project.org"
4040
},
4141
"runtimePlatform": "R version 4.3.3 (2024-02-29 ucrt)",
42-
"version": "0.5.2.9000"
42+
"version": "0.6.0"
4343
}

vignettes/aggregate-1.png

-11 Bytes
Loading

vignettes/contourlines-1.png

-23 Bytes
Loading

vignettes/faceted-1.png

-2 Bytes
Loading

vignettes/hypso-1.png

-161 Bytes
Loading

vignettes/lux_ggplot-1.png

-22 Bytes
Loading

vignettes/rgb-1.png

-13 Bytes
Loading

vignettes/spatraster-example1-1.png

-6 Bytes
Loading

0 commit comments

Comments
 (0)