Increase version and update changelog
This commit is contained in:
parent
e3bcbcbfba
commit
0fb3c3ff7e
19
CHANGELOG.md
19
CHANGELOG.md
|
@ -1,3 +1,22 @@
|
|||
## CARLA 0.8.2
|
||||
|
||||
* Revamped driving benchmark
|
||||
- Changed name from benchmark to driving benchmark
|
||||
- Fully Redesigned the architecture of the module
|
||||
- Added a lot more documentation
|
||||
- Now you can stop and resume the benchmarks you run
|
||||
* Rolled back vehicle's location to the pivot of the mesh instead of the center of the bounding box
|
||||
* Added relative transform of the vehicle's bounding box to the measurements, player and non-players
|
||||
* Added "frame number" to each sensor measurement so it is possible to sync all the measurements based on the frame they are produced
|
||||
* Improved vehicle spawner to better handle spawning failures
|
||||
* Walkers use now a closer angle to detect vehicles, so they don't stop moving if a car passes nearby
|
||||
* Fixed lighting artefact causing the road to change its brightness depending on the distance to the camera
|
||||
* Fixed captured images overexposed in Low mode
|
||||
* Fixed illegal character in asset name
|
||||
* Fixed editing sun azimuth angle in CarlaWeadther.ini had no effect
|
||||
* Fixed crash when using a non-standard image size in DirectX (Windows)
|
||||
* Fixed issue with using multiple "SceneCaptureToDiskCamera"
|
||||
|
||||
## CARLA 0.8.1
|
||||
|
||||
* New Python example for visualizing the player start positions
|
||||
|
|
|
@ -4,7 +4,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='carla_client',
|
||||
version='0.8.1',
|
||||
version='0.8.2',
|
||||
packages=['carla', 'carla.driving_benchmark', 'carla.agent',
|
||||
'carla.driving_benchmark.experiment_suites', 'carla.planner'],
|
||||
license='MIT License',
|
||||
|
|
|
@ -3,7 +3,7 @@ ProjectID=675BF8694238308FA9368292CC440350
|
|||
ProjectName=CARLA UE4
|
||||
CompanyName=CVC
|
||||
CopyrightNotice="Copyright (c) 2017 Computer Vision Center (CVC) at the Universitat Autonoma de Barcelona (UAB). This work is licensed under the terms of the MIT license. For a copy, see <https://opensource.org/licenses/MIT>."
|
||||
ProjectVersion=0.8.1
|
||||
ProjectVersion=0.8.2
|
||||
|
||||
[/Script/UnrealEd.ProjectPackagingSettings]
|
||||
BuildConfiguration=PPBC_Development
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"FileVersion": 3,
|
||||
"Version": 1,
|
||||
"VersionName": "0.8.1",
|
||||
"VersionName": "0.8.2",
|
||||
"FriendlyName": "CARLA",
|
||||
"Description": "Open-source simulator for autonomous driving research.",
|
||||
"Category": "Science",
|
||||
|
|
Loading…
Reference in New Issue