Skip to content

Commit 3b7fcb0

Browse files
committed
4.3.1 release
1 parent 3cbcac2 commit 3b7fcb0

File tree

6 files changed

+17
-13
lines changed

6 files changed

+17
-13
lines changed

.github/workflows/build-test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ jobs:
1414

1515
steps:
1616
- name: Checkout Repository
17-
uses: actions/checkout@v1
17+
uses: actions/checkout@v3
1818
- name: Set up JDK 11
19-
uses: actions/setup-java@v1
19+
uses: actions/setup-java@v3
2020
with:
21+
distribution: 'temurin'
2122
java-version: 11
2223
- name: Build & Test
2324
run: mvn clean package

.github/workflows/build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,19 @@ jobs:
2020
string: "${{ github.repository }}"
2121
replace-with: ''
2222
- name: Checkout Simple Features Repository
23-
uses: actions/checkout@v1
23+
uses: actions/checkout@v3
2424
with:
2525
repository: ${{ steps.sf-repository.outputs.replaced }}
2626
ref: ${{ github.ref }}
27+
path: simple-features-java
2728
- name: set up JDK 11
28-
uses: actions/setup-java@v1
29+
uses: actions/setup-java@v3
2930
with:
31+
distribution: 'temurin'
3032
java-version: 11
3133
- name: Build & Install Simple Features
32-
run: mvn -f ../simple-features-java clean install -DskipTests
34+
run: mvn -f simple-features-java clean install -DskipTests
3335
- name: Checkout Repository
34-
uses: actions/checkout@v1
36+
uses: actions/checkout@v3
3537
- name: Build
3638
run: mvn clean package -DskipTests

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,10 @@ Adheres to [Semantic Versioning](http://semver.org/).
44

55
---
66

7-
## 4.3.1 (TBD)
7+
## [4.3.1](https://github.com/ngageoint/simple-features-proj-java/releases/tag/4.3.1) (01-19-2023)
88

9-
* TBD
9+
* simple-features-java version 2.2.1
10+
* proj 1.1.3
1011

1112
## [4.3.0](https://github.com/ngageoint/simple-features-proj-java/releases/tag/4.3.0) (09-21-2022)
1213

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ Geometry transformed = transform.transform(geometry);
3939

4040
### Installation ###
4141

42-
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.sf|sf-proj|4.3.0|jar) (JAR, POM, Source, Javadoc)
42+
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.sf|sf-proj|4.3.1|jar) (JAR, POM, Source, Javadoc)
4343

4444
```xml
4545

4646
<dependency>
4747
<groupId>mil.nga.sf</groupId>
4848
<artifactId>sf-proj</artifactId>
49-
<version>4.3.0</version>
49+
<version>4.3.1</version>
5050
</dependency>
5151

5252
```

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ <h2 class="project-tagline">by the National Geospatial-Intelligence Agency</h2>
1717
<a href="http://ngageoint.github.io/simple-features-proj-java/docs/api/" class="btn">API</a>
1818
<a href="https://github.com/ngageoint/simple-features-proj-java/zipball/master" class="btn">.zip</a>
1919
<a href="https://github.com/ngageoint/simple-features-proj-java/tarball/master" class="btn">.tar.gz</a>
20-
<a href="http://search.maven.org/#artifactdetails|mil.nga.sf|sf-proj|4.3.0|jar" class="btn">The Central Repository</a>
20+
<a href="http://search.maven.org/#artifactdetails|mil.nga.sf|sf-proj|4.3.1|jar" class="btn">The Central Repository</a>
2121
</section>
2222

2323
<section class="main-content">

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
<dependency>
4747
<groupId>mil.nga</groupId>
4848
<artifactId>sf</artifactId>
49-
<version>2.2.0</version>
49+
<version>2.2.1</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>mil.nga</groupId>
5353
<artifactId>proj</artifactId>
54-
<version>1.1.2</version>
54+
<version>1.1.3</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>junit</groupId>

0 commit comments

Comments
 (0)