From 4884461e1a2d6375ef5a037e16b2f73fecc61d51 Mon Sep 17 00:00:00 2001 From: Scott Chamberlain Date: Thu, 7 Jan 2021 11:33:48 -0800 Subject: [PATCH] update description, news, cran comments, codemeta.json --- DESCRIPTION | 2 +- NEWS.md | 18 ++++++++++++++++++ codemeta.json | 6 +++--- cran-comments.md | 6 +++--- 4 files changed, 25 insertions(+), 7 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 81c3b98b..c0793845 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -7,7 +7,7 @@ Description: Client for many 'NOAA' data sources including the 'NCDC' climate for 'NOAA' sea ice data, the 'NOAA' severe weather inventory, 'NOAA' Historical Observing 'Metadata' Repository ('HOMR') data, 'NOAA' storm data via 'IBTrACS', tornado data via the 'NOAA' storm prediction center, and more. -Version: 1.2.3.91 +Version: 1.3.0 License: MIT + file LICENSE Encoding: UTF-8 Language: en-US diff --git a/NEWS.md b/NEWS.md index 8834c3b8..b3e33927 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,21 @@ +rnoaa 1.3 +========= + +### NEW FEATURES + +* `ghcnd()` now accepts more than 1 station identifier (#373) PR from @eliocamp +* `ersst()`: use new v5 version of their service - see `?ersst` docs for details (#381) thanks @vonStadarhraun for the tip + +### MINOR IMPROVEMENTS + +* update `buoy()` docs to state that a special value of `9999` passsed to the `year` parameter will give the most up to date data (aka current data) - and an example added using it (#377) +* update to current dplyr functions from deprecated ones (#375) +* update description of units TMAX and TMIN for dataset GHCND when using function `ncdc()` with `add_units = TRUE` (#378) (#379) PR from @amcdavid + +### BUG FIXES + +* changed `ghcnd()` handling of unknown/bad/invalid station identifiers: now returns an empty data.frame and gives back empty strings for the two attributes `source` and `file_modified` (#374) + rnoaa 1.2.0 =========== diff --git a/codemeta.json b/codemeta.json index 9c2f3664..a2e93def 100644 --- a/codemeta.json +++ b/codemeta.json @@ -10,13 +10,13 @@ "codeRepository": "https://github.com/ropensci/rnoaa", "issueTracker": "https://github.com/ropensci/rnoaa/issues", "license": "https://spdx.org/licenses/MIT", - "version": "1.2.0", + "version": "1.3.0", "programmingLanguage": { "@type": "ComputerLanguage", "name": "R", "url": "https://r-project.org" }, - "runtimePlatform": "R version 4.0.2 Patched (2020-09-01 r79114)", + "runtimePlatform": "R version 4.0.3 Patched (2020-12-29 r79725)", "provider": { "@id": "https://cran.r-project.org", "@type": "Organization", @@ -472,7 +472,7 @@ "contIntegration": "https://codecov.io/github/ropensci/rnoaa?branch=master", "releaseNotes": "https://github.com/ropensci/rnoaa/blob/master/NEWS.md", "readme": "https://github.com/ropensci/rnoaa/blob/master/README.md", - "fileSize": "0KB", + "fileSize": "18278.866KB", "applicationCategory": "Climate", "isPartOf": "https://ropensci.org", "keywords": ["earth", "science", "climate", "precipitation", "temperature", "storm", "buoy", "NCDC", "NOAA", "tornadoe", "seaice", "ISD", "noaa", "rstats", "noaa-data", "r", "r-package"], diff --git a/cran-comments.md b/cran-comments.md index 5823f12a..a75f62e4 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,7 +1,7 @@ ## Test environments -* local OS X install, R 4.0.2 -* ubuntu 16.04 (on travis-ci), R 4.0.2 +* local OS X install, R 4.0.3 +* ubuntu 16.04 (on GitHub Actions), R 4.0.3 * win-builder (release, devel) ## R CMD check results @@ -15,7 +15,7 @@ Checked on the 2 reverse dependencies - no problems were found ----- -This version makes four functions defunct and makes some minor improvements. +This version makes some minor improvements and fixes a bug. Thanks! Scott Chamberlain