Skip to content

Commit

Permalink
Add flow node state terminated
Browse files Browse the repository at this point in the history
  • Loading branch information
chDame committed Jul 11, 2022
1 parent 7e0deee commit 19b6511
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ You can import it to your maven or gradle project as a dependency
<dependency>
<groupId>io.camunda</groupId>
<artifactId>camunda-operate-client-java</artifactId>
<version>1.0.2</version>
<version>1.0.3</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

group = 'io.camunda'
version = '1.0.2'
version = '1.0.3'
sourceCompatibility = '8'

repositories {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
package io.camunda.operate.dto;

public enum FlownodeInstanceState {
ACTIVE, INCIDENT, COMPLETED;
ACTIVE, INCIDENT, COMPLETED, TERMINATED;
}

0 comments on commit 19b6511

Please sign in to comment.