From a693a4fd0b74a6783db3d2effffa05133c384ebc Mon Sep 17 00:00:00 2001 From: kaibocai <89094811+kaibocai@users.noreply.github.com> Date: Thu, 1 Dec 2022 08:27:40 -0600 Subject: [PATCH] release version 1.0.0 (#97) --- CHANGELOG.md | 5 +---- azurefunctions/build.gradle | 2 +- client/build.gradle | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 06c28bd..73e2688 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,6 @@ ### Updates -* Updated package version to v1.0.0 - to be updated * update DataConverterException with detail error message ([#78](https://github.com/microsoft/durabletask-java/issues/78)) * update OrchestratorBlockedEvent and TaskFailedException to be unchecked exceptions ([#88](https://github.com/microsoft/durabletask-java/issues/88)) * updated PurgeInstances to take a timeout parameter and throw TimeoutException ([#37](https://github.com/microsoft/durabletask-java/issues/37)) @@ -17,6 +16,4 @@ ### Breaking changes * Use java worker middleware to avoid wrapper method when create orchestrator function ([#87](https://github.com/microsoft/durabletask-java/pull/87)) -* Fixed DurableClientContext.createCheckStatusResponse to return 202 ([#92](https://github.com/microsoft/durabletask-java/pull/92)) - -* to be updated \ No newline at end of file +* Fixed DurableClientContext.createCheckStatusResponse to return 202 ([#92](https://github.com/microsoft/durabletask-java/pull/92)) \ No newline at end of file diff --git a/azurefunctions/build.gradle b/azurefunctions/build.gradle index 2b76aaf..46c8a39 100644 --- a/azurefunctions/build.gradle +++ b/azurefunctions/build.gradle @@ -4,7 +4,7 @@ plugins { } group 'com.microsoft' -version = '1.0.0-beta.1' +version = '1.0.0' archivesBaseName = 'durabletask-azure-functions' def protocVersion = '3.12.0' diff --git a/client/build.gradle b/client/build.gradle index 883216b..028f7ab 100644 --- a/client/build.gradle +++ b/client/build.gradle @@ -7,7 +7,7 @@ plugins { } group 'com.microsoft' -version = '1.0.0-beta.1' +version = '1.0.0' archivesBaseName = 'durabletask-client' def grpcVersion = '1.46.0'