From 1e9af75fc50e24c4f472d1a5985ae513180d3a8e Mon Sep 17 00:00:00 2001 From: "Stephen C. Pope" Date: Tue, 13 Feb 2024 10:06:22 -0700 Subject: [PATCH] Client Release v3.0.3 (#12448) GitOrigin-RevId: f2a34b8efd6b9eb818a8ae4573bc49711fb2bd6b --- README.md | 6 ++++++ descarteslabs/core/client/__init__.py | 2 +- descarteslabs/core/client/version.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index c34e9f33..d758ee8b 100644 --- a/README.md +++ b/README.md @@ -17,6 +17,12 @@ The documentation for the latest release can be found at [https://docs.descartes Changelog ========= +## [3.0.3] - 2024-02-13 + +### General + +- Fixed a bug in seldom-used code to clear client state causing an import failure. + ## [3.0.2] - 2024-02-09 ### Vector diff --git a/descarteslabs/core/client/__init__.py b/descarteslabs/core/client/__init__.py index b1c84021..e092ec62 100644 --- a/descarteslabs/core/client/__init__.py +++ b/descarteslabs/core/client/__init__.py @@ -32,7 +32,7 @@ def clear_client_state(): """Clear all cached client state.""" from descarteslabs.auth import Auth from ..common.http.service import DefaultClientMixin - from descarteslabs.catalog.helpers import ( + from ..catalog.helpers import ( BANDS_BY_PRODUCT_CACHE as catalog_bands_by_product_cache, ) diff --git a/descarteslabs/core/client/version.py b/descarteslabs/core/client/version.py index b1261a67..8fcd33d5 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__ = "3.0.2" +__version__ = "3.0.3"