Skip to content

Commit

Permalink
4.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bosborn committed Jan 19, 2023
1 parent 3cbcac2 commit 3b7fcb0
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 13 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
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@ Adheres to [Semantic Versioning](http://semver.org/).

---

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

* TBD
* simple-features-java version 2.2.1
* proj 1.1.3

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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ Geometry transformed = transform.transform(geometry);

### Installation ###

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

```xml

<dependency>
<groupId>mil.nga.sf</groupId>
<artifactId>sf-proj</artifactId>
<version>4.3.0</version>
<version>4.3.1</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-proj-java/docs/api/" class="btn">API</a>
<a href="https://github.com/ngageoint/simple-features-proj-java/zipball/master" class="btn">.zip</a>
<a href="https://github.com/ngageoint/simple-features-proj-java/tarball/master" class="btn">.tar.gz</a>
<a href="http://search.maven.org/#artifactdetails|mil.nga.sf|sf-proj|4.3.0|jar" class="btn">The Central Repository</a>
<a href="http://search.maven.org/#artifactdetails|mil.nga.sf|sf-proj|4.3.1|jar" class="btn">The Central Repository</a>
</section>

<section class="main-content">
Expand Down
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@
<dependency>
<groupId>mil.nga</groupId>
<artifactId>sf</artifactId>
<version>2.2.0</version>
<version>2.2.1</version>
</dependency>
<dependency>
<groupId>mil.nga</groupId>
<artifactId>proj</artifactId>
<version>1.1.2</version>
<version>1.1.3</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand Down

0 comments on commit 3b7fcb0

Please sign in to comment.