Skip to content

Commit 128534d

Browse files
committed
Bumped version to 2.9.0
1 parent dd4aa3c commit 128534d

19 files changed

Lines changed: 30 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [X.Y.Z](https://github.com/NASA-AMMOS/<repo_name>/releases/tag/X.Y.Z) - 2023-MM-DD
99

10+
1011
## [Unreleased]
1112
### Added
1213
### Changed
14+
### Deprecated
15+
### Removed
16+
### Fixed
17+
### Security
18+
### Breaking Changes
19+
20+
21+
## [2.9.0]
22+
### Added
23+
### Changed
1324
- Updated to Camunda 7.24.6-ee
1425
- Updated to Spring 7
1526
- Updated to Apache Tomcat 11

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ cws-core (foundation)
117117
## Important Development Notes
118118

119119
### Version Information
120-
- CWS Version: 2.8.0 (update this each CWS release)
120+
- CWS Version: 2.9.0 (update this each CWS release)
121121
- Camunda Version: 7.24.6-ee
122122
- Tomcat Version: 11.0.20
123123
- Java Version: 17 (enforced by Maven)

cws-adaptation-engine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>gov.nasa.jpl.ammos.ids.cws</groupId>
55
<artifactId>common-workflow-service</artifactId>
6-
<version>2.8.0</version><!-- update this each CWS release -->
6+
<version>2.9.0</version><!-- update this each CWS release -->
77
</parent>
88
<artifactId>cws-adaptation-engine</artifactId>
99

cws-adaptation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>gov.nasa.jpl.ammos.ids.cws</groupId>
55
<artifactId>common-workflow-service</artifactId>
6-
<version>2.8.0</version><!-- update this each CWS release -->
6+
<version>2.9.0</version><!-- update this each CWS release -->
77
</parent>
88
<artifactId>cws-adaptation</artifactId>
99

cws-core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>gov.nasa.jpl.ammos.ids.cws</groupId>
55
<artifactId>common-workflow-service</artifactId>
6-
<version>2.8.0</version><!-- update this each CWS release -->
6+
<version>2.9.0</version><!-- update this each CWS release -->
77
</parent>
88
<artifactId>cws-core</artifactId>
99

cws-engine-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>gov.nasa.jpl.ammos.ids.cws</groupId>
55
<artifactId>common-workflow-service</artifactId>
6-
<version>2.8.0</version><!-- update this each CWS release -->
6+
<version>2.9.0</version><!-- update this each CWS release -->
77
</parent>
88
<artifactId>cws-engine-service</artifactId>
99

cws-engine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nasa.jpl.ammos.ids.cws</groupId>
66
<artifactId>common-workflow-service</artifactId>
7-
<version>2.8.0</version><!-- update this each CWS release -->
7+
<version>2.9.0</version><!-- update this each CWS release -->
88
</parent>
99
<artifactId>cws-engine</artifactId>
1010

cws-installer/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>gov.nasa.jpl.ammos.ids.cws</groupId>
55
<artifactId>common-workflow-service</artifactId>
6-
<version>2.8.0</version><!-- update this each CWS release -->
6+
<version>2.9.0</version><!-- update this each CWS release -->
77
</parent>
88
<artifactId>cws-installer</artifactId>
99

cws-service/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>gov.nasa.jpl.ammos.ids.cws</groupId>
66
<artifactId>common-workflow-service</artifactId>
7-
<version>2.8.0</version><!-- update this each CWS release -->
7+
<version>2.9.0</version><!-- update this each CWS release -->
88
</parent>
99
<artifactId>cws-service</artifactId>
1010

cws-service/src/main/java/jpl/cws/controller/OpenApiController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ private OpenAPI createOpenApiSpec() {
7171
.info(new Info()
7272
.title("CWS API")
7373
.description("Documentation of the endpoints used by CWS. Once authenticated, requests can be made to these endpoints.\nTo authenticate, right click on this page --> Inspect --> Click the 'Application' tab --> Select the URL under the Cookies tab on the left --> Copy the value of the cwsToken cookie.")
74-
.version("2.8.0") // Update this each CWS release
74+
.version("2.9.0") // Update this each CWS release
7575
.license(new License()
7676
.name("Apache 2.0")
7777
.url("https://github.com/NASA-AMMOS/common-workflow-service?tab=Apache-2.0-1-ov-file")))

0 commit comments

Comments
 (0)