Skip to content

Commit d3a3770

Browse files
committed
Release v0.9.8
Change-Id: I12d4c932e989844258dfd9aa46ac9984367441ae
1 parent 792c362 commit d3a3770

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Docs/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
* [CARLA ScenarioRunner 0.9.2](#carla-scenariorunner-092)
88

99
## Latest Changes
10+
11+
## CARLA ScenarioRunner 0.9.8
1012
### :rocket: New Features
13+
* Added "--timeout" command line parameter to set a user-defined timeout value
1114
* Scenario updates:
1215
- Changed traffic light behavior of scenarios 7, 8 and 9. The new sequence is meant to greatly improve the chances of the ego vehicle having to interact at junctions.
13-
* Added "--timeout" command line parameter to set a user-defined timeout value
1416
* OpenSCENARIO support:
1517
- Add initial support for Catalogs (Vehicle, Pedestrian, Environment, Maneuver, and and MiscObject types only)
1618
### :bug: Bug Fixes

scenario_runner.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,8 @@ def __init__(self, args):
105105
self.client.set_timeout(self.client_timeout)
106106

107107
dist = pkg_resources.get_distribution("carla")
108-
if LooseVersion(dist.version) < LooseVersion('0.9.7'):
109-
raise ImportError("CARLA version 0.9.7 or newer required. CARLA version found: {}".format(dist))
108+
if LooseVersion(dist.version) < LooseVersion('0.9.8'):
109+
raise ImportError("CARLA version 0.9.8 or newer required. CARLA version found: {}".format(dist))
110110

111111
# Load additional scenario definitions, if there are any
112112
# If something goes wrong an exception will be thrown by importlib (ok here)

0 commit comments

Comments
 (0)