Skip to content

Commit 27d17a1

Browse files
committed
1.2.2 release
1 parent c6d22b6 commit 27d17a1

6 files changed

Lines changed: 15 additions & 12 deletions

File tree

.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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ Adheres to [Semantic Versioning](http://semver.org/).
44

55
---
66

7-
## 1.2.2 (TBD)
7+
## [1.2.2](https://github.com/ngageoint/geopackage-wkt-java/releases/tag/1.2.2) (01-20-2023)
88

9-
* TBD
9+
* simple-features-java version 2.2.1
1010

1111
## [1.2.1](https://github.com/ngageoint/geopackage-wkt-java/releases/tag/1.2.1) (01-13-2023)
1212

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ String text = GeometryWriter.writeGeometry(geometry);
4040

4141
### Installation ###
4242

43-
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkt|1.2.1|jar) (JAR, POM, Source, Javadoc)
43+
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkt|1.2.2|jar) (JAR, POM, Source, Javadoc)
4444

4545
```xml
4646

4747
<dependency>
4848
<groupId>mil.nga.sf</groupId>
4949
<artifactId>sf-wkt</artifactId>
50-
<version>1.2.1</version>
50+
<version>1.2.2</version>
5151
</dependency>
5252

5353
```

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-wkt-java/docs/api/" class="btn">API</a>
1818
<a href="https://github.com/ngageoint/simple-features-wkt-java/zipball/master" class="btn">.zip</a>
1919
<a href="https://github.com/ngageoint/simple-features-wkt-java/tarball/master" class="btn">.tar.gz</a>
20-
<a href="http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkt|1.2.1|jar" class="btn">The Central Repository</a>
20+
<a href="http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkt|1.2.2|jar" class="btn">The Central Repository</a>
2121
</section>
2222

2323
<section class="main-content">

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
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>junit</groupId>

0 commit comments

Comments
 (0)