diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a00e8f..733f443 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,12 @@ +## v1.1.1 + +### Updates +* Fix exception occurring when invoking the `TaskOrchestrationContext#continueAsNew` method ([#118](https://github.com/microsoft/durabletask-java/issues/118)) + ## v1.1.0 ### Updates -* Fix the potential NPE issue of `DurableTaskClient terminate` method ([#104](https://github.com/microsoft/durabletask-java/issues/104)) +* Fix the potential NPE issue of `DurableTaskClient#terminate` method ([#104](https://github.com/microsoft/durabletask-java/issues/104)) * Add waitForCompletionOrCreateCheckStatusResponse client API ([#115](https://github.com/microsoft/durabletask-java/pull/115)) * Support long timers by breaking up into smaller timers ([#114](https://github.com/microsoft/durabletask-java/issues/114)) diff --git a/azurefunctions/build.gradle b/azurefunctions/build.gradle index 6615b08..7b7d0c8 100644 --- a/azurefunctions/build.gradle +++ b/azurefunctions/build.gradle @@ -5,7 +5,7 @@ plugins { } group 'com.microsoft' -version = '1.1.0' +version = '1.1.1' archivesBaseName = 'durabletask-azure-functions' def protocVersion = '3.12.0' diff --git a/client/build.gradle b/client/build.gradle index 448ed40..63ab8db 100644 --- a/client/build.gradle +++ b/client/build.gradle @@ -8,7 +8,7 @@ plugins { } group 'com.microsoft' -version = '1.1.0' +version = '1.1.1' archivesBaseName = 'durabletask-client' def grpcVersion = '1.46.0'