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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Unreleased

## v1.6.2
* Fixing gRPC channel shutdown ([#249](https://github.com/microsoft/durabletask-java/pull/249))

## v1.6.1
* Add support for default versions in Durable Function sub-orchestrations ([#241](https://github.com/microsoft/durabletask-java/pull/241))

Expand Down
2 changes: 1 addition & 1 deletion azurefunctions/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group 'com.microsoft'
version = '1.6.1'
version = '1.6.2'
archivesBaseName = 'durabletask-azure-functions'

def protocVersion = '3.12.0'
Expand Down
2 changes: 1 addition & 1 deletion azuremanaged/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ plugins {

archivesBaseName = 'durabletask-azuremanaged'
group 'com.microsoft'
version = '1.6.1-preview.1'
version = '1.6.2-preview.1'
Comment thread
sophiatev marked this conversation as resolved.
Outdated

def grpcVersion = '1.59.0'
def azureCoreVersion = '1.45.0'
Expand Down
2 changes: 1 addition & 1 deletion client/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ plugins {
}

group 'com.microsoft'
version = '1.6.1'
version = '1.6.2'
archivesBaseName = 'durabletask-client'

def grpcVersion = '1.59.0'
Expand Down
Loading