Skip to content

Release 7.0.0.Final #527

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion .github/project.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
release:
current-version: 7.0.0
current-version: 7.0.0.Final
next-version: 8.0.0-SNAPSHOT
4 changes: 2 additions & 2 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -22,4 +22,4 @@ jobs:
if: contains(steps.metadata.outputs.current-version, 'SNAPSHOT')
run: |
echo '::error::Cannot release a SNAPSHOT version.'
exit 1
exit 1
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Add the following dependencies to your pom.xml `dependencies` section:
<dependency>
<groupId>io.serverlessworkflow</groupId>
<artifactId>serverlessworkflow-api</artifactId>
<version>7.0.0-SNAPSHOT</version>
<version>7.0.0.Final</version>
</dependency>
```

Expand All @@ -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
Expand Down
8 changes: 4 additions & 4 deletions impl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ You always need to add this dependency to your pom.xml `dependencies` section:
<dependency>
<groupId>io.serverlessworkflow</groupId>
<artifactId>serverlessworkflow-impl-core</artifactId>
<version>7.0.0</version>
<version>7.0.0.Final</version>
</dependency>
```

Expand All @@ -69,7 +69,7 @@ And only if your workflow is using HTTP calls, you must add:
<dependency>
<groupId>io.serverlessworkflow</groupId>
<artifactId>serverlessworkflow-impl-http</artifactId>
<version>7.0.0</version>
<version>7.0.0.Final</version>
</dependency>
```

Expand All @@ -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
Expand Down
Loading