Skip to content

Commit

Permalink
Update SMARTS 0.5.1.post1 -> 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Gamenot committed Mar 29, 2022
1 parent ce1d17b commit 7b655a0
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ Copy and pasting the git commit messages is __NOT__ enough.

## [Unreleased]
### Added
### Changed
### Deprecated
### Fixed
### Removed
### Security

## [0.6.0] 2022-03-28
### Added
- Added `get_vehicle_start_time()` method for scenarios with traffic history data. See Issue #1210.
- Added `sb3` reinforcement-learning example. An ego agent is trained using PPO algorithm from Stable Baselines3 library, to drive as far and as fast as possible in heavy traffic, without colliding or going off-road.
- Added `FormatObs` wrapper which converts SMARTS observations to gym-compliant RL-friendly vectorized observations and returns `StdObs`.
Expand Down
2 changes: 1 addition & 1 deletion examples/driving_in_traffic/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
python_requires=">=3.7",
install_requires=[
"setuptools>=41.0.0,!=50.0",
"smarts[camera-obs]~=0.5.1",
"smarts[camera-obs]~=0.6.0",
"dreamerv2==2.1.1",
"tensorflow==2.4.0",
"tensorflow-probability==0.12.2",
Expand Down
2 changes: 1 addition & 1 deletion examples/sb3/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
python_requires=">=3.7",
install_requires=[
"setuptools>=41.0.0,!=50.0",
"smarts[camera-obs]==0.5.1",
"smarts[camera-obs]~=0.6.0",
"stable-baselines3[extra]==1.4.0",
"tensorflow==2.4.0",
"ruamel.yaml==0.17.17",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
description="Scalable Multi-Agent RL Training School",
long_description=long_description,
long_description_content_type="text/markdown",
version="0.5.1.post1",
version="0.6.0",
packages=find_packages(exclude=("tests", "examples")),
include_package_data=True,
zip_safe=True,
Expand Down
2 changes: 1 addition & 1 deletion smarts/ros/src/smarts_ros/package.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0"?>
<package format="2">
<name>smarts_ros</name>
<version>0.5.1</version>
<version>0.6.0</version>
<description>The SMARTS package includes a node to wrap and drive a SMARTS simulation,
publishing the state updates after each step.</description>

Expand Down

0 comments on commit 7b655a0

Please sign in to comment.