diff --git a/DESCRIPTION b/DESCRIPTION index c82ee98..0ec763e 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,7 +4,7 @@ Description: Convert 'WKT' to 'GeoJSON' and 'GeoJSON' to 'WKT'. Functions included for converting between 'GeoJSON' to 'WKT', creating both 'GeoJSON' features, and non-features, creating 'WKT' from R objects (e.g., lists, data.frames, vectors), and linting 'WKT'. -Version: 0.7.2.91 +Version: 0.7.4 Authors@R: c(person("Scott", "Chamberlain", role = c("aut", "cre"), email = "myrmecocystus@gmail.com", comment = c(ORCID="0000-0003-1444-9135")), diff --git a/NEWS.md b/NEWS.md index c0093b5..855cb22 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,11 @@ +wellknown 0.7.4 +=============== + +### MINOR IMPROVEMENTS + +* fix a few examples for `geojson2wkt()` that had calls to `matrix()` that were leading to warnings because the input vectors were not a multiple of the nrow/ncol (#35) + + wellknown 0.7.2 =============== diff --git a/codemeta.json b/codemeta.json index d93c5c8..6f3c3b5 100644 --- a/codemeta.json +++ b/codemeta.json @@ -10,13 +10,13 @@ "codeRepository": "https://github.com/ropensci/wellknown", "issueTracker": "https://github.com/ropensci/wellknown/issues", "license": "https://spdx.org/licenses/MIT", - "version": "0.7.2", + "version": "0.7.4", "programmingLanguage": { "@type": "ComputerLanguage", "name": "R", "url": "https://r-project.org" }, - "runtimePlatform": "R version 4.0.3 Patched (2020-12-29 r79725)", + "runtimePlatform": "R version 4.1.0 (2021-05-18)", "provider": { "@id": "https://cran.r-project.org", "@type": "Organization", @@ -114,7 +114,7 @@ "contIntegration": "https://codecov.io/github/ropensci/wellknown?branch=master", "releaseNotes": "https://github.com/ropensci/wellknown/blob/master/NEWS.md", "readme": "https://github.com/ropensci/wellknown/blob/master/README.md", - "fileSize": "33652.74KB", + "fileSize": "30101.59KB", "applicationCategory": "Geosptial", "isPartOf": "https://ropensci.org", "keywords": ["spatial", "geospatial", "wkt", "wkb", "well-known-text", "geojson", "binary", "conversion", "rstats", "wellknown", "r", "r-package"], diff --git a/cran-comments.md b/cran-comments.md index 4902e21..a99dc95 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,7 +1,7 @@ ## Test environments -* local OS X install, R 4.0.3 -* ubuntu 16.04 (on GitHub Actions), R 4.0.3 +* local macOS, R 4.1.0 +* ubuntu 16.04 (on GitHub Actions), R 4.1.0 * win-builder (devel and release) ## R CMD check results @@ -10,12 +10,12 @@ ## Reverse dependencies -* I have run R CMD check on the 3 reverse dependencies. No problems were +* I have run R CMD check on the 5 reverse dependencies. No problems were found -------- -This version makes the package compatible with the upcoming BH version. +This version makes the package compatible with the upcoming BH version and fixes a matrix warning from an example. Thanks! Scott Chamberlain