From 7d4bd00ab6144bdc06b9a58161dbfed70e658d53 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Thu, 11 Jun 2026 03:12:35 +0200 Subject: [PATCH 1/2] Fix reading translations and ticketing --- src/gtfs_reader.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/gtfs_reader.rs b/src/gtfs_reader.rs index cc29a29..4901e08 100644 --- a/src/gtfs_reader.rs +++ b/src/gtfs_reader.rs @@ -288,6 +288,9 @@ impl RawGtfsReader { "pathways.txt", "feed_info.txt", "shapes.txt", + "translations.txt", + "ticketing_deep_links.txt", + "ticketing_identifiers.txt", ] { let path = std::path::Path::new(archive_file.name()); if path.file_name() == Some(std::ffi::OsStr::new(gtfs_file)) { From ae06e92fe7406d527e0e2dc7783c3fe1d2233abf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Wed, 1 Jul 2026 15:08:41 +0200 Subject: [PATCH 2/2] Prepare new release 0.48.2 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7eb6fba..b8aac11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] description = "Read GTFS (public transit timetables) files" name = "gtfs-structures" -version = "0.48.1" +version = "0.48.2" authors = [ "Tristram Gräbener ", "Antoine Desbordes ",