Increase version and update changelog
This commit is contained in:
parent
014f22b507
commit
9a9ce7bfa1
|
@ -1,3 +1,10 @@
|
||||||
|
## CARLA 0.8.1
|
||||||
|
|
||||||
|
* New Python example for visualizing the player start positions
|
||||||
|
* Fixed box extent of non-player agents was sent in centimeters instead of meters
|
||||||
|
* Fixed speed limits were sent in km/h instead of m/s
|
||||||
|
* Fixed issue in Volkswagen T2 wheels causing it to overturn
|
||||||
|
|
||||||
## CARLA 0.8.0
|
## CARLA 0.8.0
|
||||||
|
|
||||||
* Upgraded to Unreal Engine 4.18
|
* Upgraded to Unreal Engine 4.18
|
||||||
|
|
|
@ -4,7 +4,7 @@ from setuptools import setup
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='carla_client',
|
name='carla_client',
|
||||||
version='0.8.0',
|
version='0.8.1',
|
||||||
packages=['carla', 'carla.benchmarks', 'carla.planner'],
|
packages=['carla', 'carla.benchmarks', 'carla.planner'],
|
||||||
license='MIT License',
|
license='MIT License',
|
||||||
description='Python API for communicating with the CARLA server.',
|
description='Python API for communicating with the CARLA server.',
|
||||||
|
|
|
@ -3,7 +3,7 @@ ProjectID=675BF8694238308FA9368292CC440350
|
||||||
ProjectName=CARLA UE4
|
ProjectName=CARLA UE4
|
||||||
CompanyName=CVC
|
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>."
|
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.0
|
ProjectVersion=0.8.1
|
||||||
|
|
||||||
[/Script/UnrealEd.ProjectPackagingSettings]
|
[/Script/UnrealEd.ProjectPackagingSettings]
|
||||||
BuildConfiguration=PPBC_Development
|
BuildConfiguration=PPBC_Development
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"FileVersion": 3,
|
"FileVersion": 3,
|
||||||
"Version": 1,
|
"Version": 1,
|
||||||
"VersionName": "0.8.0",
|
"VersionName": "0.8.1",
|
||||||
"FriendlyName": "CARLA",
|
"FriendlyName": "CARLA",
|
||||||
"Description": "Open-source simulator for autonomous driving research.",
|
"Description": "Open-source simulator for autonomous driving research.",
|
||||||
"Category": "Science",
|
"Category": "Science",
|
||||||
|
|
Loading…
Reference in New Issue