Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update Batch version to 8.1.0
 - Updated the changelog as well.
  • Loading branch information
matthchr authored and xingwu1 committed Mar 5, 2018
commit 4af0ce7474c3f1016c889b6db57a30525e0dbf55
2 changes: 1 addition & 1 deletion src/SDKs/Batch/DataPlane/Azure.Batch/AssemblyAttributes.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
[assembly: AssemblyDescription("Client library for interacting with the Azure Batch service.")]

[assembly: AssemblyVersion("8.0.0.0")]
[assembly: AssemblyFileVersion("8.0.1.0")]
[assembly: AssemblyFileVersion("8.1.0.0")]
[assembly: AssemblyCompany("Microsoft Corporation")]
[assembly: AssemblyProduct("Microsoft Azure")]
[assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation. All rights reserved.")]
Expand Down
2 changes: 1 addition & 1 deletion src/SDKs/Batch/DataPlane/Azure.Batch/Azure.Batch.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<GenerateAssemblyCompanyAttribute>false</GenerateAssemblyCompanyAttribute>
<PackageId>Azure.Batch</PackageId>
<Description>This client library provides access to the Microsoft Azure Batch service.</Description>
<VersionPrefix>8.0.1</VersionPrefix>
<VersionPrefix>8.1.0</VersionPrefix>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@xingwu1 add package release notes for this new version.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@shahabhijeet I am not sure about where is the release notes you reference. We did update the changelog.md with this PR.

<DefineConstants>$(DefineConstants);CODESIGN</DefineConstants>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<AssemblyName>Microsoft.Azure.Batch</AssemblyName>
Expand Down
9 changes: 9 additions & 0 deletions src/SDKs/Batch/DataPlane/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Azure.Batch release notes

## Changes in 8.1.0
### Features
- Added the ability to query pool node counts by state, via the new `ListPoolNodeCounts` method on `PoolOperations`.
- Added the ability to upload Azure Batch node agent logs from a particular node, via the `UploadComputeNodeBatchServiceLogs` method on `PoolOperations` and `ComputeNode`.
- This is intended for use in debugging by Microsoft support when there are problems on a node.

### REST API version
This version of the Batch .NET client library targets version 2018-02-01.6.1 of the Azure Batch REST API.

## Changes in 8.0.1
### Bug fixes
- Fixed a bug where deserializing some enum properties could fail if using Newtonsoft 10.
Expand Down