From 2a2b509567db4aa8093d6bbb45f60e5162c9bd27 Mon Sep 17 00:00:00 2001 From: "Stephen C. Pope" Date: Tue, 31 Oct 2023 11:42:45 -0700 Subject: [PATCH] Client release v2.1.2 (#12287) GitOrigin-RevId: a7b06e1865c9e27b5f62f601efb8dac1b8d2e921 --- README.md | 5 ++++- descarteslabs/core/client/version.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fc2e65d0..47d78c65 100644 --- a/README.md +++ b/README.md @@ -18,13 +18,16 @@ The documentation for the latest release can be found at [https://docs.descartes Changelog ========= -## Unreleased +## [2.1.2] - 2023-10-31 ## Compute - `Function.delete_jobs` was failing to implement the `delete_results` parameter, so job result blobs were not being deleted. This has been fixed. - Add `delete_results` parameter to `Function.delete` for consistency. +- `Job.statistics` field added which contains statistics (CPU, memory, and network utilization) for the + job. This can be used to determine the minimal resources necessary for the `Function` after some + representative runs. ## [2.1.1] - 2023-10-16 diff --git a/descarteslabs/core/client/version.py b/descarteslabs/core/client/version.py index a76cb224..4894590c 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.1.1" +__version__ = "2.1.2"