diff --git a/NEWS.md b/NEWS.md index 5a3f6f1..97077f7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,11 @@ +rcol 0.2.0 +========== + +### MINOR IMPROVEMENTS + +* fix broken example: required a fix in an internal funciton to sort data.frame columns that wasn't robust to missing columns (#8) +* fixed tests + rcol 0.1.0 ========== diff --git a/codemeta.json b/codemeta.json index 3fd8bec..95115bc 100644 --- a/codemeta.json +++ b/codemeta.json @@ -1,5 +1,8 @@ { - "@context": ["https://doi.org/10.5063/schema/codemeta-2.0", "http://schema.org"], + "@context": [ + "https://doi.org/10.5063/schema/codemeta-2.0", + "http://schema.org" + ], "@type": "SoftwareSourceCode", "identifier": "rcol", "description": "Client for the Catalogue of Life ('CoL')\n (); based on the new\n 'CoL' service, not the old one. Catalogue of Life is a database of\n taxonomic names. Includes functions for each\n of the API methods, including searching for names, and more.", @@ -8,13 +11,13 @@ "relatedLink": "https://docs.ropensci.org/rcol/", "issueTracker": "https://github.com/ropensci/rcol/issues", "license": "https://spdx.org/licenses/MIT", - "version": "0.1.0", + "version": "0.2.0", "programmingLanguage": { "@type": "ComputerLanguage", "name": "R", "url": "https://r-project.org" }, - "runtimePlatform": "R version 4.0.3 Patched (2021-01-08 r79819)", + "runtimePlatform": "R version 4.1.0 (2021-05-18)", "author": [ { "@type": "Person", @@ -134,6 +137,13 @@ "keywords": ["biology", "science", "API", "web", "api-client", "taxonomy", "species", "rstats", "r"], "releaseNotes": "https://github.com/ropensci/rcol/blob/master/NEWS.md", "readme": "https://github.com/ropensci/rcol/blob/master/README.md", - "fileSize": "215.34KB", - "contIntegration": "https://codecov.io/gh/ropensci/rcol" + "fileSize": "212.515KB", + "contIntegration": "https://codecov.io/gh/ropensci/rcol", + "provider": { + "@id": "https://cran.r-project.org", + "@type": "Organization", + "name": "Comprehensive R Archive Network (CRAN)", + "url": "https://cran.r-project.org" + }, + "developmentStatus": "https://www.repostatus.org/#active" } diff --git a/cran-comments.md b/cran-comments.md index ce128e5..432e63a 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,6 +1,6 @@ ## Test environments -* local R installation, R 4.0.3 -* ubuntu 16.04 (on travis-ci), R 4.0.3 +* local R installation on macOS, R 4.1.0 +* ubuntu 16.04 (on github actions), R 4.1.0 * win-builder (devel) ## R CMD check results @@ -9,9 +9,7 @@ ----- -This is a new release. I have read and agree to the the CRAN policies at https://cran.r-project.org/web/packages/policies.html - -This is a re-submission of v0.1.0 adding \value to .Rd files where they were missing. +This submission fixes broken examples. Thanks! Scott Chamberlain