Skip to content

Commit 81d4ec8

Browse files
author
Chris Elion
authored
update release version list (#3497)
1 parent 9f9f576 commit 81d4ec8

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,10 +94,11 @@ For any other questions or feedback, connect directly with the ML-Agents
9494
9595

9696
## Releases
97-
The latest release is 0.14.0. Previous releases can be found below:
97+
The latest release is 0.14.1. Previous releases can be found below:
9898

9999
| **Version** | **Source** | **Documentation** | **Download** |
100100
|:-------:|:------:|:-------------:|:-------:|
101+
| **0.14.0** | [source](https://github.com/Unity-Technologies/ml-agents/tree/0.14.0) | [docs](https://github.com/Unity-Technologies/ml-agents/tree/0.14.0/docs) | [download](https://github.com/Unity-Technologies/ml-agents/archive/0.14.0.zip) |
101102
| **0.13.1** | [source](https://github.com/Unity-Technologies/ml-agents/tree/0.13.1) | [docs](https://github.com/Unity-Technologies/ml-agents/tree/0.13.1/docs) | [download](https://github.com/Unity-Technologies/ml-agents/archive/0.13.1.zip) |
102103
| **0.13.0** | [source](https://github.com/Unity-Technologies/ml-agents/tree/0.13.0) | [docs](https://github.com/Unity-Technologies/ml-agents/tree/0.13.0/docs) | [download](https://github.com/Unity-Technologies/ml-agents/archive/0.13.0.zip) |
103104
| **0.12.1** | [source](https://github.com/Unity-Technologies/ml-agents/tree/0.12.1) | [docs](https://github.com/Unity-Technologies/ml-agents/tree/0.12.1/docs) | [download](https://github.com/Unity-Technologies/ml-agents/archive/0.12.1.zip) |

utils/make_readme_table.py

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,16 @@ def table_line(version):
99
return f"| **{version}** | [source](https://github.com/Unity-Technologies/ml-agents/tree/{version}) | [docs](https://github.com/Unity-Technologies/ml-agents/tree/{version}/docs) | [download](https://github.com/Unity-Technologies/ml-agents/archive/{version}.zip) |" # noqa
1010

1111

12-
versions = ["0.10.0", "0.10.1", "0.11.0", "0.12.0", "0.12.1", "0.13.0", "0.13.1"]
12+
versions = [
13+
"0.10.0",
14+
"0.10.1",
15+
"0.11.0",
16+
"0.12.0",
17+
"0.12.1",
18+
"0.13.0",
19+
"0.13.1",
20+
"0.14.0",
21+
]
1322

1423
sorted_versions = sorted((LooseVersion(v) for v in versions), reverse=True)
1524

0 commit comments

Comments
 (0)