diff --git a/.github/project.yml b/.github/project.yml
index 4100367b..cdbb32e2 100644
--- a/.github/project.yml
+++ b/.github/project.yml
@@ -1,3 +1,3 @@
release:
- current-version: 7.0.0
+ current-version: 7.0.0.Final
next-version: 8.0.0-SNAPSHOT
diff --git a/.github/workflows/pre-release.yml b/.github/workflows/pre-release.yml
index ce904c75..9d46ce2a 100644
--- a/.github/workflows/pre-release.yml
+++ b/.github/workflows/pre-release.yml
@@ -11,7 +11,7 @@ jobs:
name: pre release
steps:
- - uses: radcortez/project-metadata-action@master
+ - uses: radcortez/project-metadata-action@main
name: retrieve project metadata
id: metadata
with:
@@ -22,4 +22,4 @@ jobs:
if: contains(steps.metadata.outputs.current-version, 'SNAPSHOT')
run: |
echo '::error::Cannot release a SNAPSHOT version.'
- exit 1
\ No newline at end of file
+ exit 1
diff --git a/README.md b/README.md
index b641b483..caf87812 100644
--- a/README.md
+++ b/README.md
@@ -56,7 +56,7 @@ Add the following dependencies to your pom.xml `dependencies` section:
io.serverlessworkflow
serverlessworkflow-api
- 7.0.0-SNAPSHOT
+ 7.0.0.Final
```
@@ -65,7 +65,7 @@ Add the following dependencies to your pom.xml `dependencies` section:
Add the following dependencies to your build.gradle `dependencies` section:
```text
-implementation("io.serverlessworkflow:serverlessworkflow-api:7.0.0-SNAPSHOT")
+implementation("io.serverlessworkflow:serverlessworkflow-api:7.0.0.Final")
```
## How to Use
diff --git a/impl/README.md b/impl/README.md
index 437a661e..26655a02 100644
--- a/impl/README.md
+++ b/impl/README.md
@@ -59,7 +59,7 @@ You always need to add this dependency to your pom.xml `dependencies` section:
io.serverlessworkflow
serverlessworkflow-impl-core
- 7.0.0
+ 7.0.0.Final
```
@@ -69,7 +69,7 @@ And only if your workflow is using HTTP calls, you must add:
io.serverlessworkflow
serverlessworkflow-impl-http
- 7.0.0
+ 7.0.0.Final
```
@@ -78,13 +78,13 @@ And only if your workflow is using HTTP calls, you must add:
You always need to add this dependency to your build.gradle `dependencies` section:
```text
-implementation("io.serverlessworkflow:serverlessworkflow-impl-core:7.0.0")
+implementation("io.serverlessworkflow:serverlessworkflow-impl-core:7.0.0.Final")
```
And only if your workflow is using HTTP calls, you must add:
```text
-implementation("io.serverlessworkflow:serverlessworkflow-impl-http:7.0.0")
+implementation("io.serverlessworkflow:serverlessworkflow-impl-http:7.0.0.Final")
```
## How to use