Skip to content

Commit 660be93

Browse files
committed
remove detritus
1 parent 3f18907 commit 660be93

11 files changed

+18
-87
lines changed

.github/workflows/R-CMD-check.yaml

-49
This file was deleted.

.github/workflows/pkgdown.yaml

+7-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@ on:
99
types: [published]
1010
workflow_dispatch:
1111

12-
name: pkgdown
12+
name: pkgdown.yaml
13+
14+
permissions: read-all
1315

1416
jobs:
1517
pkgdown:
@@ -19,8 +21,10 @@ jobs:
1921
group: pkgdown-${{ github.event_name != 'pull_request' || github.run_id }}
2022
env:
2123
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
24+
permissions:
25+
contents: write
2226
steps:
23-
- uses: actions/checkout@v3
27+
- uses: actions/checkout@v4
2428

2529
- uses: r-lib/actions/setup-pandoc@v2
2630

@@ -39,7 +43,7 @@ jobs:
3943

4044
- name: Deploy to GitHub pages 🚀
4145
if: github.event_name != 'pull_request'
42-
uses: JamesIves/github-pages-deploy-action@v4.4.1
46+
uses: JamesIves/github-pages-deploy-action@v4.5.0
4347
with:
4448
clean: false
4549
branch: gh-pages

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: fasterize
22
Title: Fast Polygon to Raster Conversion
3-
Version: 1.0.5
3+
Version: 1.1.0
44
Authors@R: c(
55
person("Noam", "Ross", , "ross@ecohealthalliance.org",
66
role = c("aut"),

NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# fasterize 1.1.0
2+
3+
* Cleaned up old spelling detritus in tests, thanks to CRAN.
4+
15
# fasterize 1.0.5
26

37
* Input geometries may now be of type "sfc_GEOMETRY" or other mixed types. Any non polygon

R/fasterize.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ make_sf <- function(x, attr = NULL) {
2828
#' @param field character (or numeric vector). The name of a column in `sf`,
2929
#' providing a value for each of the polygons rasterized. If NULL (default),
3030
#' all polygons will be given a value of 1. If a numeric vector this value
31-
#' will be used as the value given to the pixel. (No recyling is done).
31+
#' will be used as the value given to the pixel. (No recycling is done).
3232
#' @param fun character. The name of a function by which to combine overlapping
3333
#' polygons. Currently takes "sum", "first", "last", "min", "max", "count", or
3434
#' "any". Future versions may include more functions or the ability to pass

cran-comments.md

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11

2-
# fasterize 1.0.5
3-
4-
* Fixes for roxygen namespace documentation and remove specific C++11 requirement.
2+
# fasterize 1.1.0
53

4+
* Fixed detritus in test directory causing notes on CRAN.
65

76

87
Thanks!

inst/WORDLIST

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ rasterized
3535
rasterizing
3636
rasters
3737
respository
38+
sfc
3839
terra
3940
toolchain
4041
ucdavis

man/fasterize-package.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/fasterize.Rd

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/spelling.R

-3
This file was deleted.

tests/spelling.Rout.save

-25
This file was deleted.

0 commit comments

Comments
 (0)