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"