diff --git a/DESCRIPTION b/DESCRIPTION index dd38245..ea31479 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -5,7 +5,7 @@ Description: Tools for working with 'taxonomic' databases, including utilities for downloading databases, loading them into various 'SQL' databases, cleaning up files, and providing a 'SQL' connection that can be used to do 'SQL' queries directly or used in 'dplyr'. -Version: 0.2.0.91 +Version: 0.2.2 Authors@R: c( person("Scott", "Chamberlain", email = "myrmecocystus+r@gmail.com", role = c("aut", "cre")), diff --git a/NEWS.md b/NEWS.md index 73e6707..52b5b82 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,11 @@ +taxizedb 0.2.2 +============== + +## BUG FIXES + +* fix failing tests (#50) + + taxizedb 0.2.0 ============== diff --git a/codemeta.json b/codemeta.json index f20e610..43cc8f8 100644 --- a/codemeta.json +++ b/codemeta.json @@ -10,14 +10,13 @@ "codeRepository": "https://github.com/ropensci/taxizedb", "issueTracker": "https://github.com/ropensci/taxizedb/issues", "license": "https://spdx.org/licenses/MIT", - "version": "0.1.9.9100", + "version": "0.2.2", "programmingLanguage": { "@type": "ComputerLanguage", "name": "R", - "version": "3.6.1", "url": "https://r-project.org" }, - "runtimePlatform": "R version 3.6.1 Patched (2019-07-17 r76848)", + "runtimePlatform": "R version 4.0.2 Patched (2020-06-30 r78761)", "provider": { "@id": "https://cran.r-project.org", "@type": "Organization", @@ -48,40 +47,51 @@ "softwareSuggestions": [ { "@type": "SoftwareApplication", - "identifier": "roxygen2", - "name": "roxygen2", - "version": ">= 6.0.1", + "identifier": "testthat", + "name": "testthat", "provider": { "@id": "https://cran.r-project.org", "@type": "Organization", "name": "Comprehensive R Archive Network (CRAN)", "url": "https://cran.r-project.org" }, - "sameAs": "https://CRAN.R-project.org/package=roxygen2" + "sameAs": "https://CRAN.R-project.org/package=testthat" }, { "@type": "SoftwareApplication", - "identifier": "testthat", - "name": "testthat", + "identifier": "taxize", + "name": "taxize", "provider": { "@id": "https://cran.r-project.org", "@type": "Organization", "name": "Comprehensive R Archive Network (CRAN)", "url": "https://cran.r-project.org" }, - "sameAs": "https://CRAN.R-project.org/package=testthat" + "sameAs": "https://CRAN.R-project.org/package=taxize" }, { "@type": "SoftwareApplication", - "identifier": "taxize", - "name": "taxize", + "identifier": "knitr", + "name": "knitr", "provider": { "@id": "https://cran.r-project.org", "@type": "Organization", "name": "Comprehensive R Archive Network (CRAN)", "url": "https://cran.r-project.org" }, - "sameAs": "https://CRAN.R-project.org/package=taxize" + "sameAs": "https://CRAN.R-project.org/package=knitr" + }, + { + "@type": "SoftwareApplication", + "identifier": "rmarkdown", + "name": "rmarkdown", + "provider": { + "@id": "https://cran.r-project.org", + "@type": "Organization", + "name": "Comprehensive R Archive Network (CRAN)", + "url": "https://cran.r-project.org" + }, + "sameAs": "https://CRAN.R-project.org/package=rmarkdown" } ], "softwareRequirements": [ @@ -149,18 +159,6 @@ }, "sameAs": "https://CRAN.R-project.org/package=tibble" }, - { - "@type": "SoftwareApplication", - "identifier": "tidyr", - "name": "tidyr", - "provider": { - "@id": "https://cran.r-project.org", - "@type": "Organization", - "name": "Comprehensive R Archive Network (CRAN)", - "url": "https://cran.r-project.org" - }, - "sameAs": "https://CRAN.R-project.org/package=tidyr" - }, { "@type": "SoftwareApplication", "identifier": "rlang", @@ -226,12 +224,21 @@ "sameAs": "https://CRAN.R-project.org/package=hoardr" } ], - "contIntegration": "https://travis-ci.org/ropensci/taxizedb", + "contIntegration": ["https://circleci.com/gh/ropensci/taxizedb", "https://codecov.io/gh/ropensci/taxizedb"], "releaseNotes": "https://github.com/ropensci/taxizedb/blob/master/NEWS.md", "readme": "https://github.com/ropensci/taxizedb/blob/master/README.md", - "fileSize": "28.071KB", + "fileSize": "0KB", "contributor": {}, "copyrightHolder": {}, "funder": {}, - "keywords": ["taxonomy", "taxonomic-databases", "itis", "rstats", "taxize", "r", "r-package"] + "keywords": [ + "taxonomy", + "taxonomic-databases", + "itis", + "rstats", + "taxize", + "r", + "r-package" + ], + "relatedLink": "https://ropensci.github.io/taxizedb/" } diff --git a/cran-comments.md b/cran-comments.md index f2c163a..a345ac3 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -14,7 +14,7 @@ There are no reverse dependencies. --- -This version fixes many bugs and adds additional data sources. +This version fixes some failing tests on CRAN. Thanks! Scott Chamberlain