Skip to content

Commit af5ac0b

Browse files
committed
Release 5.3
1 parent 2927335 commit af5ac0b

File tree

13 files changed

+23
-23
lines changed

13 files changed

+23
-23
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ We even have [good first issues](https://github.com/graphhopper/graphhopper/issu
2323
To get started you can try [GraphHopper Maps](README.md#graphhopper-maps), read through our documentation and install the GraphHopper Web Service locally.
2424

2525
* 5.x: [documentation](https://github.com/graphhopper/graphhopper/blob/5.x/docs/index.md)
26-
, [web service jar](https://github.com/graphhopper/graphhopper/releases/download/5.2/graphhopper-web-5.2.jar)
26+
, [web service jar](https://github.com/graphhopper/graphhopper/releases/download/5.3/graphhopper-web-5.3.jar)
2727
, [announcement](https://www.graphhopper.com/blog/2022/03/23/graphhopper-routing-engine-5-0-released/)
2828
* unstable master: [documentation](https://github.com/graphhopper/graphhopper/blob/master/docs/index.md)
2929

@@ -52,7 +52,7 @@ To get started you can try [GraphHopper Maps](README.md#graphhopper-maps), read
5252
To install the [GraphHopper Maps](https://graphhopper.com/maps/) UI and the web service locally you [need a JVM](https://adoptopenjdk.net/) (>= Java 8) and do:
5353

5454
```bash
55-
wget https://github.com/graphhopper/graphhopper/releases/download/5.2/graphhopper-web-5.2.jar https://raw.githubusercontent.com/graphhopper/graphhopper/5.x/config-example.yml http://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf
55+
wget https://github.com/graphhopper/graphhopper/releases/download/5.3/graphhopper-web-5.3.jar https://raw.githubusercontent.com/graphhopper/graphhopper/5.x/config-example.yml http://download.geofabrik.de/europe/germany/berlin-latest.osm.pbf
5656
java -Ddw.graphhopper.datareader.file=berlin-latest.osm.pbf -jar *.jar server config-example.yml
5757
```
5858

client-hc/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
<modelVersion>4.0.0</modelVersion>
2323

2424
<artifactId>directions-api-client-hc</artifactId>
25-
<version>5.2</version>
25+
<version>5.3</version>
2626
<packaging>jar</packaging>
2727
<name>GraphHopper Directions API hand-crafted Java Client.</name>
2828

2929
<parent>
3030
<groupId>com.graphhopper</groupId>
3131
<artifactId>graphhopper-parent</artifactId>
32-
<version>5.2</version>
32+
<version>5.3</version>
3333
</parent>
3434

3535
<dependencies>

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<artifactId>graphhopper-core</artifactId>
77
<name>GraphHopper Core</name>
8-
<version>5.2</version>
8+
<version>5.3</version>
99
<packaging>jar</packaging>
1010
<description>
1111
GraphHopper is a fast and memory efficient Java road routing engine
@@ -14,7 +14,7 @@
1414
<parent>
1515
<groupId>com.graphhopper</groupId>
1616
<artifactId>graphhopper-parent</artifactId>
17-
<version>5.2</version>
17+
<version>5.3</version>
1818
</parent>
1919

2020
<properties>

example/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>graphhopper-example</artifactId>
8-
<version>5.2</version>
8+
<version>5.3</version>
99
<packaging>jar</packaging>
1010
<name>GraphHopper Example</name>
1111

1212
<parent>
1313
<groupId>com.graphhopper</groupId>
1414
<artifactId>graphhopper-parent</artifactId>
15-
<version>5.2</version>
15+
<version>5.3</version>
1616
</parent>
1717

1818
<dependencies>

hmm-lib/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<modelVersion>4.0.0</modelVersion>
2020
<artifactId>hmm-lib-external</artifactId>
2121
<!-- SNAPSHOT is necessary otherwise it says: Deployment failed: repository element was not specified in the POM inside distributionManagement element-->
22-
<version>5.2</version>
22+
<version>5.3</version>
2323
<packaging>jar</packaging>
2424

2525
<name>hmm-lib</name>
@@ -29,7 +29,7 @@
2929
<parent>
3030
<groupId>com.graphhopper</groupId>
3131
<artifactId>graphhopper-parent</artifactId>
32-
<version>5.2</version>
32+
<version>5.3</version>
3333
</parent>
3434

3535
<developers>

map-matching/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.graphhopper</groupId>
55
<artifactId>graphhopper-map-matching</artifactId>
6-
<version>5.2</version>
6+
<version>5.3</version>
77
<packaging>jar</packaging>
88
<name>GraphHopper Map Matching</name>
99

1010
<parent>
1111
<groupId>com.graphhopper</groupId>
1212
<artifactId>graphhopper-parent</artifactId>
13-
<version>5.2</version>
13+
<version>5.3</version>
1414
</parent>
1515

1616
<dependencies>

navigation/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66

77
<artifactId>graphhopper-nav</artifactId>
8-
<version>5.2</version>
8+
<version>5.3</version>
99
<packaging>jar</packaging>
1010
<name>GraphHopper Navigation</name>
1111

1212
<parent>
1313
<groupId>com.graphhopper</groupId>
1414
<artifactId>graphhopper-parent</artifactId>
15-
<version>5.2</version>
15+
<version>5.3</version>
1616
</parent>
1717

1818
<dependencies>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<groupId>com.graphhopper</groupId>
77
<artifactId>graphhopper-parent</artifactId>
88
<name>GraphHopper Parent Project</name>
9-
<version>5.2</version>
9+
<version>5.3</version>
1010
<packaging>pom</packaging>
1111
<url>https://www.graphhopper.com</url>
1212
<inceptionYear>2012</inceptionYear>

reader-gtfs/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.graphhopper</groupId>
1212
<artifactId>graphhopper-parent</artifactId>
13-
<version>5.2</version>
13+
<version>5.3</version>
1414
</parent>
1515

1616
<dependencies>

tools/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<parent>
1111
<groupId>com.graphhopper</groupId>
1212
<artifactId>graphhopper-parent</artifactId>
13-
<version>5.2</version>
13+
<version>5.3</version>
1414
</parent>
1515
<properties>
1616
<assembly-phase>package</assembly-phase>

web-api/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>graphhopper-web-api</artifactId>
77
<packaging>jar</packaging>
8-
<version>5.2</version>
8+
<version>5.3</version>
99
<name>GraphHopper Web API</name>
1010
<description>JSON Representation of the API classes</description>
1111

1212
<parent>
1313
<groupId>com.graphhopper</groupId>
1414
<artifactId>graphhopper-parent</artifactId>
15-
<version>5.2</version>
15+
<version>5.3</version>
1616
</parent>
1717

1818
<dependencies>

web-bundle/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>graphhopper-web-bundle</artifactId>
77
<packaging>jar</packaging>
8-
<version>5.2</version>
8+
<version>5.3</version>
99
<name>GraphHopper Dropwizard Bundle</name>
1010
<description>Use the GraphHopper routing engine as a web-service</description>
1111

1212
<parent>
1313
<groupId>com.graphhopper</groupId>
1414
<artifactId>graphhopper-parent</artifactId>
15-
<version>5.2</version>
15+
<version>5.3</version>
1616
</parent>
1717

1818
<dependencies>

web/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<modelVersion>4.0.0</modelVersion>
66
<artifactId>graphhopper-web</artifactId>
77
<packaging>jar</packaging>
8-
<version>5.2</version>
8+
<version>5.3</version>
99
<name>GraphHopper Web</name>
1010
<description>Use the GraphHopper routing engine as a web-service</description>
1111

1212
<parent>
1313
<groupId>com.graphhopper</groupId>
1414
<artifactId>graphhopper-parent</artifactId>
15-
<version>5.2</version>
15+
<version>5.3</version>
1616
</parent>
1717
<properties>
1818
<shade-phase>package</shade-phase>

0 commit comments

Comments
 (0)