diff --git a/CHANGELOG.md b/CHANGELOG.md index 6aefdb21..f369ac2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ # Changelog -## [unreleased] -* Fix zero granules being reported for restricted datasets +## [v0.8.0] 2023-11-29 +* Bug fixes: + * Fix zero granules being reported for restricted datasets. +* Enhancements: + * earthaccess will `raise` errors instead of `print`ing them in more cases. + * `daac` and `provider` parameters are now normalized to uppercase, since lowercase + characters are never valid. ## [v0.7.1] 2023-11-08 * Bug Fixes: diff --git a/CITATION.cff b/CITATION.cff index aea82a41..fd4f71b9 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -23,8 +23,8 @@ keywords: url: "https://earthaccess.readthedocs.io" repository-code: "https://github.com/nsidc/earthaccess" -version: "0.7.1" -date-released: "2023-11-08" +version: "0.8.0" +date-released: "2023-11-29" authors: - family-names: "Barrett" @@ -43,6 +43,10 @@ authors: given-names: "Matt" orcid: "https://orcid.org/0000-0003-3260-5445" website: "https://mfisher87.github.io/" +- family-names: "Kaufman" + given-names: "Daniel" + orcid: "https://orcid.org/0000-0002-1487-7298" + website: "https://github.com/danielfromearth" - family-names: "Kennedy" given-names: "Joseph" orcid: "https://orcid.org/0000-0002-9348-693X" diff --git a/pyproject.toml b/pyproject.toml index 6b6fb68a..88b85ceb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "earthaccess" -version = "0.7.1" +version = "0.8.0" homepage = "https://github.com/nsidc/earthaccess" description = "Client library for NASA Earthdata APIs" authors = ["earthaccess contributors"] @@ -94,7 +94,7 @@ ignore_errors = true [tool.bumpversion] -current_version = "0.7.1" +current_version = "0.8.0" commit = false tag = false