Skip to content

Commit 77aa86e

Browse files
authored
chore: release v9.3.0 (#2080)
2 parents f91a028 + 012df19 commit 77aa86e

File tree

8 files changed

+24
-15
lines changed

8 files changed

+24
-15
lines changed

CHANGELOG.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,21 @@ Releasing is documented in RELEASE.md
2727

2828
## [unreleased]
2929

30+
### Added
31+
32+
### Changed
33+
34+
### Deprecated
35+
36+
### Removed
37+
38+
### Fixed
39+
40+
### Security
41+
42+
43+
## [9.3.0] - 2025-06-06
44+
3045
### Added
3146
- maven wrapper to project ([#1973](https://github.com/GIScience/openrouteservice/issues/1973))
3247
- include OSM data version (`osm_date`) in the API response ([#1192](https://github.com/GIScience/openrouteservice/issues/1192))
@@ -37,19 +52,13 @@ Releasing is documented in RELEASE.md
3752
### Changed
3853
- refactor: core node ID map using DataAccess ([#2074](https://github.com/GIScience/openrouteservice/pull/2074))
3954

40-
### Deprecated
41-
42-
### Removed
43-
4455
### Fixed
4556
- fix http pooling for matrix generation requests ([#2059](https://github.com/GIScience/openrouteservice/pull/2059))
4657
- bump deprecated CodeQL and failing Grype scan GitHub actions to their current versions ([#2061](https://github.com/GIScience/openrouteservice/pull/2061))
4758
- avoid routing on roads with access reserved to customers ([#2060](https://github.com/GIScience/openrouteservice/pull/2060))
4859
- required dynamic weights for driving-hgv with `hazmat` `false` or other default Vehicle init values ([#2071](https://github.com/GIScience/openrouteservice/pull/2071))
4960
- enable setting vehicle parameters without the need of specifying vehicle type ([#2073](https://github.com/GIScience/openrouteservice/pull/2073))
5061

51-
### Security
52-
5362

5463
## [9.2.0] - 2025-05-06
5564

@@ -69,7 +78,6 @@ Releasing is documented in RELEASE.md
6978
- correct available features in custom-model docs ([#2033](https://github.com/GIScience/openrouteservice/issues/2033))
7079
- prevent ferry speed derived from the maxspeed OSM tag from exceeding the maximum possible encoder value ([#2030](https://github.com/GIScience/openrouteservice/issues/2030))
7180

72-
### Security
7381

7482
## [9.1.2] - 2025-04-10
7583

@@ -909,7 +917,8 @@ are attached to roads. ([Issue #162](https://github.com/GIScience/openrouteservi
909917
- Fix bug in RPHAST when location lies on a oneway road.
910918
- Consider turn restrictions if optimized=false is passed.
911919

912-
[unreleased]: https://github.com/GIScience/openrouteservice/compare/v9.2.0...HEAD
920+
[unreleased]: https://github.com/GIScience/openrouteservice/compare/v9.3.0...HEAD
921+
[9.3.0]: https://github.com/GIScience/openrouteservice/compare/v9.2.0...v9.3.0
913922
[9.2.0]: https://github.com/GIScience/openrouteservice/compare/v9.1.2...v9.2.0
914923
[9.1.2]: https://github.com/GIScience/openrouteservice/compare/v9.1.1...v9.1.2
915924
[9.1.1]: https://github.com/GIScience/openrouteservice/compare/v9.1.0...v9.1.1

ors-api/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<relativePath>../pom.xml</relativePath>
3131
<artifactId>openrouteservice</artifactId>
3232
<groupId>org.heigit.ors</groupId>
33-
<version>9.3.0-SNAPSHOT</version>
33+
<version>9.3.0</version>
3434
</parent>
3535

3636
<modelVersion>4.0.0</modelVersion>

ors-benchmark/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<relativePath>../pom.xml</relativePath>
88
<artifactId>openrouteservice</artifactId>
99
<groupId>org.heigit.ors</groupId>
10-
<version>9.3.0-SNAPSHOT</version>
10+
<version>9.3.0</version>
1111
</parent>
1212

1313
<artifactId>ors-benchmark</artifactId>

ors-engine/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<relativePath>../pom.xml</relativePath>
3131
<artifactId>openrouteservice</artifactId>
3232
<groupId>org.heigit.ors</groupId>
33-
<version>9.3.0-SNAPSHOT</version>
33+
<version>9.3.0</version>
3434
</parent>
3535

3636
<modelVersion>4.0.0</modelVersion>

ors-report-aggregation/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<relativePath>../pom.xml</relativePath>
44
<artifactId>openrouteservice</artifactId>
55
<groupId>org.heigit.ors</groupId>
6-
<version>9.3.0-SNAPSHOT</version>
6+
<version>9.3.0</version>
77
</parent>
88

99
<modelVersion>4.0.0</modelVersion>

ors-test-scenarios/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<relativePath>../pom.xml</relativePath>
88
<artifactId>openrouteservice</artifactId>
99
<groupId>org.heigit.ors</groupId>
10-
<version>9.3.0-SNAPSHOT</version>
10+
<version>9.3.0</version>
1111
</parent>
1212

1313
<artifactId>ors-test-scenarios</artifactId>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"type": "module",
3-
"version": "9.2.0",
3+
"version": "9.3.0",
44
"devDependencies": {
55
"mermaid": "^11.6.0",
66
"vitepress": "^1.6.3",

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<modelVersion>4.0.0</modelVersion>
1212
<groupId>org.heigit.ors</groupId>
1313
<artifactId>openrouteservice</artifactId>
14-
<version>9.3.0-SNAPSHOT</version>
14+
<version>9.3.0</version>
1515
<packaging>pom</packaging>
1616
<name>openrouteservice</name>
1717
<url>https://openrouteservice.org</url>

0 commit comments

Comments
 (0)