Skip to content

Commit bb50a15

Browse files
committed
6.6.2 release
1 parent f2a169b commit bb50a15

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
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: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,11 @@ jobs:
1313

1414
steps:
1515
- name: Checkout Repository
16-
uses: actions/checkout@v1
16+
uses: actions/checkout@v3
1717
- name: Set up JDK 11
18-
uses: actions/setup-java@v1
18+
uses: actions/setup-java@v3
1919
with:
20+
distribution: 'temurin'
2021
java-version: 11
2122
- name: Build
2223
run: mvn clean package -DskipTests

CHANGELOG.md

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

55
---
66

7-
## 6.6.2 (TBD)
7+
## [6.6.2](https://github.com/ngageoint/geopackage-core-java/releases/tag/6.6.2) (01-23-2023)
88

9-
* sf-wkb version 2.2.1
10-
* sf-wkt version 1.2.1
9+
* sf-wkb version 2.2.2
10+
* sf-wkt version 1.2.2
11+
* sf-proj version 4.3.1
12+
* oapi-features-json version 2.3.2
1113

1214
## [6.6.1](https://github.com/ngageoint/geopackage-core-java/releases/tag/6.6.1) (12-07-2022)
1315

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ The [GeoPackage Java](https://github.com/ngageoint/geopackage-java) library is a
3737

3838
### Installation ###
3939

40-
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.geopackage|geopackage-core|6.6.1|jar) (JAR, POM, Source, Javadoc)
40+
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.geopackage|geopackage-core|6.6.2|jar) (JAR, POM, Source, Javadoc)
4141

4242
<dependency>
4343
<groupId>mil.nga.geopackage</groupId>
4444
<artifactId>geopackage-core</artifactId>
45-
<version>6.6.1</version>
45+
<version>6.6.2</version>
4646
</dependency>
4747

4848
### Build ###

docs/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h2 class="project-tagline">by the National Geospatial-Intelligence Agency</h2>
1818
<a href="http://ngageoint.github.io/geopackage-core-java/docs/api/" class="btn">API</a>
1919
<a href="https://github.com/ngageoint/geopackage-core-java/zipball/master" class="btn">.zip</a>
2020
<a href="https://github.com/ngageoint/geopackage-core-java/tarball/master" class="btn">.tar.gz</a>
21-
<a href="http://search.maven.org/#artifactdetails|mil.nga.geopackage|geopackage-core|6.6.1|jar" class="btn">The Central Repository</a>
21+
<a href="http://search.maven.org/#artifactdetails|mil.nga.geopackage|geopackage-core|6.6.2|jar" class="btn">The Central Repository</a>
2222
</section>
2323

2424
<section class="main-content">

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,22 +51,22 @@
5151
<dependency>
5252
<groupId>mil.nga.sf</groupId>
5353
<artifactId>sf-wkb</artifactId>
54-
<version>2.2.1</version>
54+
<version>2.2.2</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>mil.nga.sf</groupId>
5858
<artifactId>sf-wkt</artifactId>
59-
<version>1.2.1</version>
59+
<version>1.2.2</version>
6060
</dependency>
6161
<dependency>
6262
<groupId>mil.nga.sf</groupId>
6363
<artifactId>sf-proj</artifactId>
64-
<version>4.3.0</version>
64+
<version>4.3.1</version>
6565
</dependency>
6666
<dependency>
6767
<groupId>mil.nga.oapi.features</groupId>
6868
<artifactId>oapi-features-json</artifactId>
69-
<version>2.3.1</version>
69+
<version>2.3.2</version>
7070
</dependency>
7171
<dependency>
7272
<groupId>mil.nga</groupId>

0 commit comments

Comments
 (0)