Skip to content

Commit 469e844

Browse files
committed
1.1.3 release
1 parent 69581cb commit 469e844

File tree

6 files changed

+16
-13
lines changed

6 files changed

+16
-13
lines changed

.github/workflows/build-test.yml

+3-2
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

+3-2
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

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

55
---
66

7-
## 1.1.3 (TBD)
7+
## [1.1.3](https://github.com/ngageoint/projections-java/releases/tag/1.1.3) (01-19-2023)
88

9-
* TBD
9+
* crs version 1.1.5
10+
* proj4j 1.2.2
1011

1112
## [1.1.2](https://github.com/ngageoint/projections-java/releases/tag/1.1.2) (05-04-2022)
1213

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,14 +60,14 @@ ProjCoordinate inverseTransformed = inverseTransform
6060

6161
### Installation ###
6262

63-
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga|proj|1.1.2|jar) (JAR, POM, Source, Javadoc)
63+
Pull from the [Maven Central Repository](http://search.maven.org/#artifactdetails|mil.nga|proj|1.1.3|jar) (JAR, POM, Source, Javadoc)
6464

6565
```xml
6666

6767
<dependency>
6868
<groupId>mil.nga</groupId>
6969
<artifactId>proj</artifactId>
70-
<version>1.1.2</version>
70+
<version>1.1.3</version>
7171
</dependency>
7272

7373
```

docs/index.html

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

2323
<section class="main-content">

pom.xml

+4-4
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
<dependency>
4747
<groupId>mil.nga</groupId>
4848
<artifactId>crs</artifactId>
49-
<version>1.1.4</version>
49+
<version>1.1.5</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.locationtech.proj4j</groupId>
5353
<artifactId>proj4j</artifactId>
54-
<version>1.1.5</version>
54+
<version>1.2.2</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>junit</groupId>
@@ -79,7 +79,7 @@
7979
<plugin>
8080
<groupId>org.apache.maven.plugins</groupId>
8181
<artifactId>maven-shade-plugin</artifactId>
82-
<version>3.3.0</version>
82+
<version>3.4.1</version>
8383
<executions>
8484
<execution>
8585
<phase>package</phase>
@@ -135,7 +135,7 @@
135135
<plugin>
136136
<groupId>org.apache.maven.plugins</groupId>
137137
<artifactId>maven-javadoc-plugin</artifactId>
138-
<version>3.4.0</version>
138+
<version>3.4.1</version>
139139
<configuration>
140140
<links>
141141
<link>http://ngageoint.github.io/coordinate-reference-systems-java/docs/api/</link>

0 commit comments

Comments
 (0)