Skip to content

Commit

Permalink
feat(sumo): accept SUMO 1.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kschrab committed Oct 10, 2024
1 parent 6d67846 commit 8eef789
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ public enum SumoVersion {
SUMO_1_18_x("1.18.*", TraciVersion.API_20),
SUMO_1_19_x("1.19.*", TraciVersion.API_21),
SUMO_1_20_x("1.20.*", TraciVersion.API_21),
SUMO_1_21_x("1.21.*", TraciVersion.API_21),

/**
* the lowest version supported by this client.
Expand All @@ -54,7 +55,7 @@ public enum SumoVersion {
/**
* the highest version supported by this client.
*/
HIGHEST(SUMO_1_20_x.sumoVersion, SUMO_1_20_x.traciVersion);
HIGHEST(SUMO_1_21_x.sumoVersion, SUMO_1_21_x.traciVersion);

private final String sumoVersion;
private final TraciVersion traciVersion;
Expand Down

0 comments on commit 8eef789

Please sign in to comment.