From 239458ce12a78486f31f4465c78c1c800afe6c56 Mon Sep 17 00:00:00 2001 From: Tihomir Surdilovic Date: Sat, 4 Sep 2021 19:13:26 -0400 Subject: [PATCH] update readme for 0.3.x Signed-off-by: Tihomir Surdilovic --- README.md | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index cc096fc8..cce0b6c9 100644 --- a/README.md +++ b/README.md @@ -19,6 +19,7 @@ to parse and validate workflow definitions as well as generate the workflow diag | Latest Releases | Conformance to spec version | | :---: | :---: | +| [3.0.0.Final](https://github.com/serverlessworkflow/sdk-java/releases/) | [v0.6](https://github.com/serverlessworkflow/specification/tree/0.7.x) | | [2.0.0.Final](https://github.com/serverlessworkflow/sdk-java/releases/) | [v0.6](https://github.com/serverlessworkflow/specification/tree/0.6.x) | | [1.0.3.Final](https://github.com/serverlessworkflow/sdk-java/releases/) | [v0.5](https://github.com/serverlessworkflow/specification/tree/0.5.x) | @@ -58,25 +59,25 @@ b) Add the following dependencies to your pom.xml `dependencies` section: io.serverlessworkflow serverlessworkflow-api - 3.0.0-SNAPSHOT + 3.0.x io.serverlessworkflow serverlessworkflow-spi - 3.0.0-SNAPSHOT + 3.0.x io.serverlessworkflow serverlessworkflow-validation - 3.0.0-SNAPSHOT + 3.0.x io.serverlessworkflow serverlessworkflow-diagram - 3.0.0-SNAPSHOT + 3.0.x ``` @@ -91,10 +92,10 @@ maven { url "https://oss.sonatype.org/content/repositories/snapshots" } b) Add the following dependencies to your build.gradle `dependencies` section: ```text -implementation("io.serverlessworkflow:serverlessworkflow-api:3.0.0-SNAPSHOT") -implementation("io.serverlessworkflow:serverlessworkflow-spi:3.0.0-SNAPSHOT") -implementation("io.serverlessworkflow:serverlessworkflow-validation:3.0.0-SNAPSHOT") -implementation("io.serverlessworkflow:serverlessworkflow-diagram:3.0.0-SNAPSHOT") +implementation("io.serverlessworkflow:serverlessworkflow-api:3.0.x") +implementation("io.serverlessworkflow:serverlessworkflow-spi:3.0.x") +implementation("io.serverlessworkflow:serverlessworkflow-validation:3.0.x") +implementation("io.serverlessworkflow:serverlessworkflow-diagram:3.0.x") ``` ### How to Use