From 00287f94fb1da2433e793b03815bab6f56c371b7 Mon Sep 17 00:00:00 2001 From: Jennifer Reiber Kyle Date: Fri, 14 Apr 2023 13:57:12 -0700 Subject: [PATCH 1/2] bump version, update changelog --- CHANGES.txt | 27 ++++++++++++++++++++++++++- planet/__version__.py | 2 +- 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/CHANGES.txt b/CHANGES.txt index 49638234e..1d016fb79 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,9 +1,34 @@ -2.0.0-rc.3 (TBD) +2.0.0 (2023-04-17) + +User Interface Changes: +- Match search-create and search-update name/filter options/parameters in Data + API and CLI to match to search UI (#883, #898, #909). +- Change Subscriptions CLI function naming from describe to get to match other + clients (#900). +- Removed (unused) checksum argument from download_order (#896). +- Move planet data stats CLI interval and filter args to required options + (#894). Changed: +- Data and Subscriptions API and CLI now normalize and validate item type and + asset type (#902, #905). +- Bulk create order example now demonstrates use of a dynamic list (#913). + +Added: +- Added bandmath tool to order_request (#876) +- Subscriptions request generator api/cli no longer requires geojson entry for + catalog source to only be a geometry, it can pull the geometry out of a + feature and featurecollection (#880) + +Fixed: +- Fixed bug that caused Landsat asset download with the Data Client fail + (#928). +- Fixed notifications entry layout generated by order_request that was causing + the notifications entry to not be used in the generated order (#917). - Session class unit tests are marked to be run within an event loop and are no longer skipped (#881). + 2.0.0-rc.2 (2023-03-15) Added: diff --git a/planet/__version__.py b/planet/__version__.py index ab12a45cf..afced1472 100644 --- a/planet/__version__.py +++ b/planet/__version__.py @@ -1 +1 @@ -__version__ = '2.0.0-rc.3dev' +__version__ = '2.0.0' From 9ecc160675b983a9a5362a0f2add9084d86abef3 Mon Sep 17 00:00:00 2001 From: Jennifer Reiber Kyle Date: Mon, 17 Apr 2023 10:38:39 -0700 Subject: [PATCH 2/2] bump to next dev version --- planet/__version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/planet/__version__.py b/planet/__version__.py index afced1472..97ae64107 100644 --- a/planet/__version__.py +++ b/planet/__version__.py @@ -1 +1 @@ -__version__ = '2.0.0' +__version__ = '2.0.1dev'