Skip to content

Commit

Permalink
Release v0.9.8
Browse files Browse the repository at this point in the history
Change-Id: I12d4c932e989844258dfd9aa46ac9984367441ae
  • Loading branch information
fabianoboril committed Mar 10, 2020
1 parent 792c362 commit d3a3770
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion Docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,12 @@
* [CARLA ScenarioRunner 0.9.2](#carla-scenariorunner-092)

## Latest Changes

## CARLA ScenarioRunner 0.9.8
### :rocket: New Features
* Added "--timeout" command line parameter to set a user-defined timeout value
* Scenario updates:
- 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.
* Added "--timeout" command line parameter to set a user-defined timeout value
* OpenSCENARIO support:
- Add initial support for Catalogs (Vehicle, Pedestrian, Environment, Maneuver, and and MiscObject types only)
### :bug: Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions scenario_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,8 +105,8 @@ def __init__(self, args):
self.client.set_timeout(self.client_timeout)

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

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

0 comments on commit d3a3770

Please sign in to comment.