Skip to content

Commit 348add2

Browse files
authored
chore: release v9.2.0 (#2052)
2 parents 6fd4dcf + e0569b2 commit 348add2

File tree

8 files changed

+28
-17
lines changed

8 files changed

+28
-17
lines changed

CHANGELOG.md

Lines changed: 21 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -28,25 +28,35 @@ Releasing is documented in RELEASE.md
2828
## [unreleased]
2929

3030
### Added
31-
- add minio option to graph repo client ([#2050](https://github.com/GIScience/openrouteservice/pull/2050))
32-
- add hint to use yaml editor in docs ([#1836](https://github.com/GIScience/openrouteservice/issues/1836))
33-
- access = permit as known access restriction type ([#2013](https://github.com/GIScience/openrouteservice/issues/2013))
34-
- add matrix generator for performance benchmarking ([#2038](https://github.com/GIScience/openrouteservice/pull/2038))
31+
3532
### Changed
3633

3734
### Deprecated
3835

3936
### Removed
4037

4138
### Fixed
42-
- fix outdated dockerfile base images and add a more robust native golang base image ([#2027](https://github.com/GIScience/openrouteservice/pull/2027))
39+
40+
### Security
41+
42+
43+
## [9.2.0] - 2025-05-06
44+
45+
### Added
46+
- minio option to graph repo client ([#2050](https://github.com/GIScience/openrouteservice/pull/2050))
47+
- hint to use yaml editor in docs ([#1836](https://github.com/GIScience/openrouteservice/issues/1836))
48+
- `access = permit` OSM tag as known access restriction type ([#2013](https://github.com/GIScience/openrouteservice/issues/2013))
49+
- matrix generator for performance benchmarking ([#2038](https://github.com/GIScience/openrouteservice/pull/2038))
50+
51+
### Fixed
52+
- update outdated dockerfile base images and add a more robust native golang base image ([#2027](https://github.com/GIScience/openrouteservice/pull/2027))
4353
- graph build date missing in case route is not found ([#2020](https://github.com/GIScience/openrouteservice/pull/2020))
44-
- fix github action build default builder image failing ([#2032](https://github.com/GIScience/openrouteservice/issues/2032))
45-
- fix wrong example in docs of extra-info 'waycategory' ([#1797](https://github.com/GIScience/openrouteservice/issues/1797))
46-
- fix population data link in docs ([#1624](https://github.com/GIScience/openrouteservice/issues/1624))
54+
- github action build default builder image failing ([#2032](https://github.com/GIScience/openrouteservice/issues/2032))
55+
- wrong example in docs of extra-info 'waycategory' ([#1797](https://github.com/GIScience/openrouteservice/issues/1797))
56+
- population data link in docs ([#1624](https://github.com/GIScience/openrouteservice/issues/1624))
4757
- accept upper and lower case booleans for REBUILD_GRAPHS within the docker setup ([#2028](https://github.com/GIScience/openrouteservice/pull/2028))
4858
- correct available features in custom-model docs ([#2033](https://github.com/GIScience/openrouteservice/issues/2033))
49-
- prevent ferry speed derived from the OSM maxspeed tag from exceeding the maximum possible encoder value ([#2030](https://github.com/GIScience/openrouteservice/issues/2030))
59+
- prevent ferry speed derived from the maxspeed OSM tag from exceeding the maximum possible encoder value ([#2030](https://github.com/GIScience/openrouteservice/issues/2030))
5060

5161
### Security
5262

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

891-
[unreleased]: https://github.com/GIScience/openrouteservice/compare/v9.1.2...HEAD
901+
[unreleased]: https://github.com/GIScience/openrouteservice/compare/v9.2.0...HEAD
902+
[9.2.0]: https://github.com/GIScience/openrouteservice/compare/v9.1.2...v9.2.0
892903
[9.1.2]: https://github.com/GIScience/openrouteservice/compare/v9.1.1...v9.1.2
893904
[9.1.1]: https://github.com/GIScience/openrouteservice/compare/v9.1.0...v9.1.1
894905
[9.1.0]: https://github.com/GIScience/openrouteservice/compare/v9.0.0...v9.1.0

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.2.0-SNAPSHOT</version>
33+
<version>9.2.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.2.0-SNAPSHOT</version>
10+
<version>9.2.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.2.0-SNAPSHOT</version>
33+
<version>9.2.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.2.0-SNAPSHOT</version>
6+
<version>9.2.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.2.0-SNAPSHOT</version>
10+
<version>9.2.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.1.2",
3+
"version": "9.2.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.2.0-SNAPSHOT</version>
14+
<version>9.2.0</version>
1515
<packaging>pom</packaging>
1616
<name>openrouteservice</name>
1717
<url>https://openrouteservice.org</url>

0 commit comments

Comments
 (0)