diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a915e8c..2be9c43 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.1" + ".": "0.2.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f85248..d2d1a95 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.2.0](https://github.com/green-ecolution/streamlet/compare/v0.1.1...v0.2.0) (2026-08-22) + + +### Features + +* **pbf-patch:** add radius queries to the way index ([47dcb25](https://github.com/green-ecolution/streamlet/commit/47dcb251f7d940cd217a8459913f1bb5fa870f8b)) +* **pbf-patch:** add the allowed-paths subcommand ([c8bfc36](https://github.com/green-ecolution/streamlet/commit/c8bfc36569ba848ce0d74669b6e569bf9a2dacef)) +* **pbf-patch:** classify footpaths and their exclusion reasons ([1f38f6e](https://github.com/green-ecolution/streamlet/commit/1f38f6e1031624b73a16ba0713b251af75820c63)) +* **pbf-patch:** open footpaths around targets without road access ([46deedc](https://github.com/green-ecolution/streamlet/commit/46deedc8c338357b41edf79bc7eb797abe8ae0c6)) +* **pbf-patch:** read target points from GeoJSON ([7ee1d8c](https://github.com/green-ecolution/streamlet/commit/7ee1d8c95c1c32cbade8e9a3df5b7b36b0b6277c)) +* **pipeline:** wire the allowed-paths changeset into the patcher entrypoint ([472d6e0](https://github.com/green-ecolution/streamlet/commit/472d6e0dbfc1ccdee66cacd1dfc9a4e37614901f)) + + +### Bug Fixes + +* **pbf-patch:** address review findings on allowed-paths ([e14170e](https://github.com/green-ecolution/streamlet/commit/e14170e4728effbc8e3a37b12aea2c6f085d695c)) + ## [0.1.1](https://github.com/green-ecolution/streamlet/compare/v0.1.0...v0.1.1) (2026-08-22) diff --git a/Cargo.lock b/Cargo.lock index f8682e0..fa257b2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1391,7 +1391,7 @@ checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a" [[package]] name = "pbf-patch" -version = "0.1.1" +version = "0.2.0" dependencies = [ "anyhow", "clap", @@ -2101,7 +2101,7 @@ dependencies = [ [[package]] name = "server" -version = "0.1.1" +version = "0.2.0" dependencies = [ "anyhow", "async-trait", @@ -2211,7 +2211,7 @@ checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" [[package]] name = "streamlet-core" -version = "0.1.1" +version = "0.2.0" dependencies = [ "async-trait", "quickcheck", diff --git a/Cargo.toml b/Cargo.toml index e4c9cf5..52300a4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "3" members = ["crates/core", "crates/server", "crates/pbf-patch"] [workspace.package] -version = "0.1.1" # x-release-please-version +version = "0.2.0" # x-release-please-version edition = "2024" rust-version = "1.88" authors = ["Cedrik Hoffmann "]