diff --git a/doc/user/BuildConfiguration.md b/doc/user/BuildConfiguration.md
index 4d3f3b9253d..bec158364ad 100644
--- a/doc/user/BuildConfiguration.md
+++ b/doc/user/BuildConfiguration.md
@@ -113,7 +113,7 @@ Sections follow that describe particular settings in more depth.
| [sharedGroupFilePattern](#tf_1_sharedGroupFilePattern) | `regexp` | Pattern for matching shared group NeTEx files in a NeTEx bundle. | *Optional* | `"(\w{3})-.*-shared\.xml"` | 2.0 |
| source | `uri` | The unique URI pointing to the data file. | *Required* | | 2.2 |
| [ferryIdsNotAllowedForBicycle](#tf_1_ferryIdsNotAllowedForBicycle) | `string[]` | List ferries which do not allow bikes. | *Optional* | | 2.0 |
-| [transitRouteToStationCentroid](#transitRouteToStationCentroid) | `feed-scoped-id[]` | List stations that should route to centroid. | *Optional* | | 2.6 |
+| [transitRouteToStationCentroid](#transitRouteToStationCentroid) | `feed-scoped-id[]` | List stations that should route to centroid. | *Optional* | | 2.7 |
@@ -1070,7 +1070,7 @@ case where this is not the case.
transitRouteToStationCentroid
-**Since version:** `2.6` ∙ **Type:** `feed-scoped-id[]` ∙ **Cardinality:** `Optional`
+**Since version:** `2.7` ∙ **Type:** `feed-scoped-id[]` ∙ **Cardinality:** `Optional`
**Path:** /
List stations that should route to centroid.
diff --git a/src/main/java/org/opentripplanner/standalone/config/BuildConfig.java b/src/main/java/org/opentripplanner/standalone/config/BuildConfig.java
index 68945b6e4dc..a1dcdc648d5 100644
--- a/src/main/java/org/opentripplanner/standalone/config/BuildConfig.java
+++ b/src/main/java/org/opentripplanner/standalone/config/BuildConfig.java
@@ -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;
@@ -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(
"""
diff --git a/src/main/java/org/opentripplanner/standalone/config/framework/json/OtpVersion.java b/src/main/java/org/opentripplanner/standalone/config/framework/json/OtpVersion.java
index 70b8e261ee4..ea9dbb4d6ba 100644
--- a/src/main/java/org/opentripplanner/standalone/config/framework/json/OtpVersion.java
+++ b/src/main/java/org/opentripplanner/standalone/config/framework/json/OtpVersion.java
@@ -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;