From 4a36e800d387f19462677f47a21d5dbbc4b9c3a9 Mon Sep 17 00:00:00 2001 From: "Stephen C. Pope" Date: Wed, 19 Apr 2023 12:45:08 -0700 Subject: [PATCH] Client release v2.0.0rc2 (#11769) GitOrigin-RevId: 7d178aaa7241c310d2c9be69f0e3dba22f767e9d --- README.md | 6 ++++++ descarteslabs/core/client/version.py | 2 +- setup.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index eb1dc268..cf0b6bec 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,8 @@ Changelog ========= ## [Unreleased] +## [2.0.0rc2] - 2023-04-19 + ### Catalog - Added support for data storage. The `Blob` class provides mechanism to upload, index, share, and retrieve arbitrary byte sequences (e.g. files). `Blob`s can be searched by namespace and name, geospatial coordinates (points, polygons, etc.), and tags. `Blob`s can be downloaded to a local file, or retrieved directly as a Python `bytes` object. `Blob`s support the same sharing mechanisms as `Product`s, with `owners`, `writers`, and `readers` attributes. @@ -29,6 +31,10 @@ Changelog - Added method to update user credentials for a `Function`. - Added methods to retrieve build and job logs. +### General + +- Added support for Shapely=2.X. + ## [2.0.0rc1] - 2023-04-10 - This is an internal-only release. There is as of yet no updated documentation. However, the user-facing client APIs remain fully compatible with v1.12.1. diff --git a/descarteslabs/core/client/version.py b/descarteslabs/core/client/version.py index 499ecccf..c6c3b184 100644 --- a/descarteslabs/core/client/version.py +++ b/descarteslabs/core/client/version.py @@ -12,4 +12,4 @@ # See the License for the specific language governing permissions and # limitations under the License. -__version__ = "2.0.0rc1" +__version__ = "2.0.0rc2" diff --git a/setup.py b/setup.py index f8e8c8bb..32792756 100644 --- a/setup.py +++ b/setup.py @@ -95,7 +95,7 @@ def do_setup(): install_requires=[ "affine>=2.2.2", "blosc>=1.10.6", - "cachetools>=3.1.1,<5", + "cachetools>=3.1.1", "dill>=0.3.6", "dynaconf>=3.1.11", "geojson>=2.5.0",