Skip to content

Commit

Permalink
2.2.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bosborn committed Jan 20, 2023
1 parent 117b43b commit 4621167
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ jobs:

steps:
- name: Checkout Repository
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Build & Test
run: mvn clean package
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,19 @@ jobs:
string: "${{ github.repository }}"
replace-with: ''
- name: Checkout Simple Features Repository
uses: actions/checkout@v1
uses: actions/checkout@v3
with:
repository: ${{ steps.sf-repository.outputs.replaced }}
ref: ${{ github.ref }}
path: simple-features-java
- name: set up JDK 11
uses: actions/setup-java@v1
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Build & Install Simple Features
run: mvn -f ../simple-features-java clean install -DskipTests
run: mvn -f simple-features-java clean install -DskipTests
- name: Checkout Repository
uses: actions/checkout@v1
uses: actions/checkout@v3
- name: Build
run: mvn clean package -DskipTests
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Adheres to [Semantic Versioning](http://semver.org/).

---

## 2.2.2 (TBD)
## [2.2.2](https://github.com/ngageoint/simple-features-wkb-java/releases/tag/2.2.2) (01-20-2023)

* TBD
* simple-features-java version 2.2.1

## [2.2.1](https://github.com/ngageoint/simple-features-wkb-java/releases/tag/2.2.1) (01-13-2023)

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,14 @@ byte[] bytes = GeometryWriter.writeGeometry(geometry);

### Installation ###

Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkb|2.2.1|jar) (JAR, POM, Source, Javadoc)
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkb|2.2.2|jar) (JAR, POM, Source, Javadoc)

```xml

<dependency>
<groupId>mil.nga.sf</groupId>
<artifactId>sf-wkb</artifactId>
<version>2.2.1</version>
<version>2.2.2</version>
</dependency>

```
Expand Down
2 changes: 1 addition & 1 deletion docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ <h2 class="project-tagline">by the National Geospatial-Intelligence Agency</h2>
<a href="http://ngageoint.github.io/simple-features-wkb-java/docs/api/" class="btn">API</a>
<a href="https://github.com/ngageoint/simple-features-wkb-java/zipball/master" class="btn">.zip</a>
<a href="https://github.com/ngageoint/simple-features-wkb-java/tarball/master" class="btn">.tar.gz</a>
<a href="http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkb|2.2.1|jar" class="btn">The Central Repository</a>
<a href="http://search.maven.org/#artifactdetails|mil.nga.sf|sf-wkb|2.2.2|jar" class="btn">The Central Repository</a>
</section>

<section class="main-content">
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<dependency>
<groupId>mil.nga</groupId>
<artifactId>sf</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 4621167

Please sign in to comment.