From 0eda11ca7e4087ea2b5ba7e0e1110460a280977c Mon Sep 17 00:00:00 2001 From: Rena Chen Date: Wed, 25 Nov 2020 11:52:11 -0800 Subject: [PATCH 1/2] Update version to 10.0.0 for _version.py --- sdk/batch/azure-batch/azure/batch/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/batch/azure-batch/azure/batch/_version.py b/sdk/batch/azure-batch/azure/batch/_version.py index 984be0edd9a5..56f3b3f103c8 100644 --- a/sdk/batch/azure-batch/azure/batch/_version.py +++ b/sdk/batch/azure-batch/azure/batch/_version.py @@ -9,5 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "9.0.1" +VERSION = "10.0.0" From 4a2bd9d9cfced74b44a0128ad84aa4e1a655788a Mon Sep 17 00:00:00 2001 From: Rena Chen Date: Wed, 25 Nov 2020 11:58:19 -0800 Subject: [PATCH 2/2] Update CHANGELOG.md to v10.0.0 and add feature descriptions --- sdk/batch/azure-batch/CHANGELOG.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sdk/batch/azure-batch/CHANGELOG.md b/sdk/batch/azure-batch/CHANGELOG.md index 74714e34a4cf..ce7b1f748823 100644 --- a/sdk/batch/azure-batch/CHANGELOG.md +++ b/sdk/batch/azure-batch/CHANGELOG.md @@ -1,7 +1,11 @@ # Release History -## 9.0.1 (Unreleased) +## 10.0.0 (2020-09-01) +### Features +- **[Breaking]** Replaced property `maxTasksPerNode` with `taskSlotsPerNode` on the pool. Using this property tasks in a job can consume a dynamic amount of slots allowing for more fine-grained control over resource consumption. +- **[Breaking]** Changed the response type of `GetTaskCounts` to return `TaskCountsResult`, which is a complex object containing the previous `TaskCounts` object and a new `TaskSlotCounts` object providing similar information in the context of slots being used. +- Added property `requiredSlots` to the task allowing user to specify how many slots on a node it should take up. ## 9.0.0 (2020-03-24)