diff --git a/README.md b/README.md index a2341561..7ee09fbf 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,20 @@ The documentation for the latest release can be found at [https://docs.descartes Changelog ========= -## [2.0.0rc4] +## [2.0.0rc5] - 2023-06-01 + +### Catalog + +- Loosen up the restrictions on the allowed alphabet for Blob names. Now almost any printable + character is accepted save for newlines and commas. +- Added new storage types for Blobs: `StorageType.COMPUTE` (for Compute job results) and + `StorageType.DYNCOMP` (for saved `dynamic-compute` operations). + +### Compute + +- Added testing of the client. + +## [2.0.0rc4] - 2023-05-17 ### Catalog @@ -38,7 +51,7 @@ Changelog - Updated requirements to avoid `urllib3>=2.0.0` which break all kinds of things. -## [2.0.0rc3] +## [2.0.0rc3] - 2023-05-03 ### Geo diff --git a/descarteslabs/core/client/version.py b/descarteslabs/core/client/version.py index 62356c59..0a92e5fc 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.0rc4" +__version__ = "2.0.0rc5"