Update changelog and increase version
This commit is contained in:
parent
fb741afeb7
commit
d4f6c24c64
18
CHANGELOG.md
18
CHANGELOG.md
|
@ -1,3 +1,21 @@
|
|||
## CARLA 0.9.2
|
||||
|
||||
* Added Python API "agents" extension, includes
|
||||
- Global route planner based in out waypoints API (compatible with OpenDrive)
|
||||
- RoamingAgent agent that can drive at different speeds following waypoints based on PID controllers, attending to other vehicles and traffic signs
|
||||
- LocalPlanner functionality to navigate waypoints using PID controllers
|
||||
- LateralControl and LongitudinalControl
|
||||
* Add support for manual gear shifting
|
||||
* Add "role_name" attribute to actors to easily identify the "hero" vehicle
|
||||
* Updates to documentation and tutorials
|
||||
* Simulator now starts by default in windowed mode
|
||||
* ROS bridge moved to its own repository
|
||||
* CMake version required downgraded to 3.5 for better compatibility
|
||||
* Fix waypoints height were all placed at zero height
|
||||
* Fix actors in world.get_actors() missing parent actor
|
||||
* Fix some vehicles losing their wheels after calling set_simulate_physics
|
||||
* Several fixes and improvements to OpenDriveActor
|
||||
|
||||
## CARLA 0.9.1
|
||||
|
||||
* New town: Town03
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
> features. Keep in mind that the API and features in this channel can (and
|
||||
> probably will) change.
|
||||
|
||||
- [CARLA 0.9.2](https://github.com/carla-simulator/carla/releases/tag/0.9.2) -
|
||||
- [CARLA 0.9.1](https://github.com/carla-simulator/carla/releases/tag/0.9.1) -
|
||||
[[Blog post](http://carla.org/2018/11/16/release-0.9.1/)] - _Vehicle navigation, new waypoint-based API, maps creation, and more_
|
||||
- [CARLA 0.9.0](https://github.com/carla-simulator/carla/releases/tag/0.9.0) -
|
||||
|
|
|
@ -95,7 +95,7 @@ def get_libcarla_extensions():
|
|||
|
||||
setup(
|
||||
name='carla',
|
||||
version='0.9.1',
|
||||
version='0.9.2',
|
||||
package_dir={'': 'source'},
|
||||
packages=['carla'],
|
||||
ext_modules=get_libcarla_extensions(),
|
||||
|
|
|
@ -4,8 +4,14 @@
|
|||
# This work is licensed under the terms of the MIT license.
|
||||
# For a copy, see <https://opensource.org/licenses/MIT>.
|
||||
|
||||
import glob
|
||||
import os
|
||||
import sys
|
||||
|
||||
sys.path.append(
|
||||
'../dist/carla-0.9.1-py%d.%d-linux-x86_64.egg' % (sys.version_info.major,
|
||||
sys.version_info.minor))
|
||||
try:
|
||||
sys.path.append(glob.glob('../dist/carla-*%d.%d-%s.egg' % (
|
||||
sys.version_info.major,
|
||||
sys.version_info.minor,
|
||||
'win-amd64' if os.name == 'nt' else 'linux-x86_64'))[0])
|
||||
except IndexError:
|
||||
pass
|
||||
|
|
|
@ -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.9.1
|
||||
ProjectVersion=0.9.2
|
||||
|
||||
[/Script/Carla.CarlaSettings]
|
||||
+LowRoadMaterials=(MaterialInterface=MaterialInstanceConstant'"/Game/Carla/Static/GenericMaterials/Ground/SimpleRoad/CheapRoad.CheapRoad"',MaterialSlotName="Tileroad_Road",ImportedMaterialSlotName="",UVChannelData=(bInitialized=False,bOverrideDensities=False,LocalUVDensities[0]=0.000000,LocalUVDensities[1]=0.000000,LocalUVDensities[2]=0.000000,LocalUVDensities[3]=0.000000))
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"FileVersion": 3,
|
||||
"Version": 1,
|
||||
"VersionName": "0.9.1",
|
||||
"VersionName": "0.9.2",
|
||||
"FriendlyName": "CARLA",
|
||||
"Description": "Open-source simulator for autonomous driving research.",
|
||||
"Category": "Science",
|
||||
|
|
Loading…
Reference in New Issue