diff --git a/README.md b/README.md index aa3a6b30..528413fa 100644 --- a/README.md +++ b/README.md @@ -18,6 +18,12 @@ The documentation for the latest release can be found at [https://docs.descartes Changelog ========= +## [2.0.1] - 2023-06-14 + +### Raster + +- Due to recent changes in `urllib3`, rastering operations were failing to retry certain errors which ought to be retried, causing more failures to propagate to the user than was desirable. This is now fixed. + ## [2.0.0] - 2023-06-12 (Release notes from all the 2.0.0 release candidates are summarized here for completeness.) diff --git a/descarteslabs/core/client/version.py b/descarteslabs/core/client/version.py index 4c8e2718..32f51bd7 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.0" +__version__ = "2.0.1"