Skip to content

Commit 20fc5a3

Browse files
committed
Upgrade version
1 parent 62bc708 commit 20fc5a3

File tree

4 files changed

+27
-4
lines changed

4 files changed

+27
-4
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
## CARLA 0.9.0
2+
3+
* Upgraded to Unreal Engine 4.19
4+
* Redesign of the networking architecture
5+
- Allows any number of clients to connect simultaneously
6+
- Now is possible to add and remove at any time any vehicle or camera
7+
- Now is possible to control any vehicle or camera
8+
- Now is possible to place cameras anywhere
9+
- Reduced to two ports instead of three
10+
- First port uses an RPC protocol based on [rpclib](http://rpclib.net/)
11+
- Second port is for the streaming of the sensor data
12+
* Redesign of the Python API
13+
- Actors and sensors are now exposed in the API and can be independently controlled
14+
- The Python module is built in C++, with significant performance gain in some operations
15+
- Many functionality haven't been ported yet, so expect a lot of things missing
16+
* Redesign of the build system to accommodate the changes in dependencies
17+
- Everything can be done now with the Makefile
18+
- For the moment only Linux is supported, sorry
19+
* Massive clean up of all unused assets
20+
* Some aesthetic fixes to the vehicles
21+
122
## CARLA 0.8.4
223

324
* Community contribution: ROS bridge by @laurent-george

Docs/download.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@
88
[[Blog post](http://carla.org/2018/04/23/release-0.8.2/)] - _Driving Benchmark_
99

1010
### Development
11-
> These are the version of CARLA, more frequently updated and with the latest features.
11+
> These are the version of CARLA, more frequently updated and with the latest features.
1212
Keep in mind that everything in this channel can (and probably will) change.
1313

14+
- [CARLA 0.9.0](https://github.com/carla-simulator/carla/releases/tag/0.9.0) -
15+
[[Blog post](http://carla.org/2018/07/30/release-0.9.0/)] - _New API, multi-client multi-agent support_
1416
- [CARLA 0.8.4](https://github.com/carla-simulator/carla/releases/tag/0.8.4) -
1517
[[Blog post](http://carla.org/2018/06/18/release-0.8.4/)] - _Fixes And More!_
1618
- [CARLA 0.8.3](https://github.com/carla-simulator/carla/releases/tag/0.8.3) -

Docs/getting_started.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Welcome to CARLA! This tutorial provides the basic steps for getting started
1111
using CARLA.
1212

1313
<!-- Latest release button -->
14-
<p align="middle"><a href="https://github.com/carla-simulator/carla/releases/latest" target="_blank" class="btn btn-neutral" title="Go to the latest CARLA release"><span class="icon icon-github"></span> Get the latest release</a></p>
14+
<p align="middle"><a href="https://github.com/carla-simulator/carla/blob/master/Docs/download.md" target="_blank" class="btn btn-neutral" title="Go to the latest CARLA release"><span class="icon icon-github"></span> Get the latest release</a></p>
1515

1616
Download the latest release from our GitHub page and extract all the contents of
1717
the package in a folder of your choice.
@@ -20,7 +20,7 @@ The release package contains the following
2020

2121
* The CARLA simulator.
2222
* The "carla" Python API module.
23-
* An "example.py" script.
23+
* A few Python scripts with usage examples.
2424

2525
The simulator can be started by running `CarlaUE4.sh` on Linux, or
2626
`CarlaUE4.exe` on Windows. Unlike previous versions, now the simulator

Docs/python_api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<h1>Python API</h1>
1+
<h1>Python API Reference</h1>
22

33
!!! important
44
Versions prior to 0.9.0 have a very different API. For the documentation of

0 commit comments

Comments
 (0)