Skip to content

Commit 1f153b1

Browse files
authored
Merge pull request podaac#251 from podaac/release/3.1.0
Merge "Release/3.1.0" to "master" branch
2 parents 76a2357 + b6d756a commit 1f153b1

5 files changed

Lines changed: 36 additions & 8 deletions

File tree

.github/workflows/build-pipeline.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020
steps:
2121
- uses: actions/checkout@v2
2222
with:
23-
token: ${{ secrets.GIT_PUSH_TOKEN }}
23+
token: ${{ secrets.GIT_PUSH_TOKEN_VIVIANT }}
2424
- uses: actions/setup-java@v2
2525
with:
2626
distribution: 'adopt'
27-
java-version: '11.0.6'
27+
java-version: '17.0.12'
2828
- uses: gradle/gradle-build-action@v1
2929
with:
3030
gradle-version: 8.0.1

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
# [Unreleased]
9+
### Added
10+
### Changed
11+
### Deprecated
12+
### Removed
13+
### Fixed
14+
### Security
15+
16+
# [3.1.0]
17+
### Added
18+
### Changed
19+
- **PODAAC-6185**
20+
- java 11 ->17
21+
### Deprecated
22+
### Removed
23+
### Fixed
24+
### Security
25+
826
# [2.2.0]
927
### Added
1028
### Changed

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apply plugin: 'java'
2-
sourceCompatibility = 1.11
3-
targetCompatibility = 1.11
2+
sourceCompatibility = 1.17
3+
targetCompatibility = 1.17
44

55
dependencies {
66
implementation fileTree(dir: 'target/dependency/', include: '*.jar')

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>gov.nasa.cumulus</groupId>
66
<artifactId>cnm-response</artifactId>
7-
<version>2.2.0</version>
7+
<version>3.1.0-rc.0</version>
88
<packaging>jar</packaging>
99

1010
<name>cnm-response</name>
@@ -88,8 +88,8 @@
8888
<artifactId>maven-compiler-plugin</artifactId>
8989
<version>3.8.0</version>
9090
<configuration>
91-
<source>11</source>
92-
<target>11</target>
91+
<source>17</source>
92+
<target>17</target>
9393
</configuration>
9494
</plugin>
9595
<plugin>
@@ -149,4 +149,4 @@
149149
</plugin>
150150
</plugins>
151151
</build>
152-
</project>
152+
</project>

release.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
# [v3.0.0] - 2025-02-09
2+
### Added
3+
### Changed
4+
- **PODAAC-6185**
5+
- java 11 ->17
6+
### Deprecated
7+
### Removed
8+
### Fixed
9+
### Security
10+
111
# [v2.0.3] - 2022-01-21
212
### Added
313
### Changed

0 commit comments

Comments
 (0)