From 1508ca9193118ff1e1d101aef195a3c613330231 Mon Sep 17 00:00:00 2001 From: Scott Chamberlain Date: Thu, 8 Jul 2021 16:41:35 -0700 Subject: [PATCH] bump to v0.6; update changelog --- Changelog.rst | 8 ++++++++ pygbif/package_metadata.py | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/Changelog.rst b/Changelog.rst index cb9e2b8..a6e4060 100644 --- a/Changelog.rst +++ b/Changelog.rst @@ -1,6 +1,14 @@ Changelog ========= +0.6.0 (2021-07-08) +------------------ +- Fixe for `occurrences.download` when giving `geometry` as a string rather than using `add_geometry`; predicates were being split on whitespace, which doesn't work for WKT :issue:`81` :issue:`84` +- Moved to using the `logging` module instead of `print()` for giving information on occurrence download methods :issue:`78` +- Clarify that `occurrences.count` for length 1 inputs only; see `occurrences.search` for > 1 value :issue:`75` :issue:`77` +- Improved documentation for `species.name_usage` method, mostly for the `language` parameter :issue:`68` +- Gains download method `download_cancel` for cancelling/deleting a download request :issue:`59` + 0.5.0 (2020-09-29) ------------------ - `occurrences.search` now supports `recordedByID` and `identifiedByID` search parameters :issue:`62` diff --git a/pygbif/package_metadata.py b/pygbif/package_metadata.py index 10fb02d..599f834 100644 --- a/pygbif/package_metadata.py +++ b/pygbif/package_metadata.py @@ -1,4 +1,4 @@ -__version__ = "0.5.3" +__version__ = "0.6.0" __title__ = "pygbif" __author__ = "Scott Chamberlain" __license__ = "MIT"