Skip to content

Commit

Permalink
Add version 2.7
Browse files Browse the repository at this point in the history
  • Loading branch information
habrahamsson-skanetrafiken committed Oct 1, 2024
1 parent 14a53d9 commit 733365c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import static org.opentripplanner.standalone.config.framework.json.OtpVersion.V2_1;
import static org.opentripplanner.standalone.config.framework.json.OtpVersion.V2_2;
import static org.opentripplanner.standalone.config.framework.json.OtpVersion.V2_5;
import static org.opentripplanner.standalone.config.framework.json.OtpVersion.V2_6;
import static org.opentripplanner.standalone.config.framework.json.OtpVersion.V2_7;

import com.fasterxml.jackson.databind.JsonNode;
import com.fasterxml.jackson.databind.node.MissingNode;
Expand Down Expand Up @@ -439,7 +439,7 @@ to check in to a flight (2-3 hours for international flights) than to alight and
transitRouteToStationCentroid =
root
.of("transitRouteToStationCentroid")
.since(V2_6)
.since(V2_7)
.summary("List stations that should route to centroid.")
.description(
"""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ public enum OtpVersion {
V2_3("2.3"),
V2_4("2.4"),
V2_5("2.5"),
V2_6("2.6");
V2_6("2.6"),
V2_7("2.7");

private final String text;

Expand Down

0 comments on commit 733365c

Please sign in to comment.