Skip to content

Commit 88c2ece

Browse files
committed
Update barracuda to 2.0.0-pre.3, update ml-agents to pre.3.
1 parent c1870fa commit 88c2ece

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

DevProject/Packages/packages-lock.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"dependencies": {
33
"com.unity.barracuda": {
4-
"version": "2.0.0-pre.2",
4+
"version": "2.0.0-pre.3",
55
"depth": 1,
66
"source": "registry",
77
"dependencies": {
@@ -55,7 +55,7 @@
5555
"depth": 0,
5656
"source": "local",
5757
"dependencies": {
58-
"com.unity.barracuda": "2.0.0-pre.2",
58+
"com.unity.barracuda": "2.0.0-pre.3",
5959
"com.unity.modules.imageconversion": "1.0.0",
6060
"com.unity.modules.jsonserialize": "1.0.0"
6161
}
@@ -65,7 +65,7 @@
6565
"depth": 0,
6666
"source": "local",
6767
"dependencies": {
68-
"com.unity.ml-agents": "2.0.0-pre.2",
68+
"com.unity.ml-agents": "2.0.0-pre.3",
6969
"com.unity.modules.physics": "1.0.0"
7070
}
7171
},

Project/Packages/packages-lock.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"depth": 0,
6464
"source": "local",
6565
"dependencies": {
66-
"com.unity.ml-agents": "2.0.0-pre.2",
66+
"com.unity.ml-agents": "2.0.0-pre.3",
6767
"com.unity.modules.physics": "1.0.0"
6868
}
6969
},

com.unity.ml-agents.extensions/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"unity": "2019.4",
66
"description": "A source-only package for new features based on ML-Agents",
77
"dependencies": {
8-
"com.unity.ml-agents": "2.0.0-pre.2",
8+
"com.unity.ml-agents": "2.0.0-pre.3",
99
"com.unity.modules.physics": "1.0.0"
1010
}
1111
}

com.unity.ml-agents/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to
77
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

9-
## [2.0.0-pre.2] - 2021-04-22
9+
## [2.0.0-pre.3] - 2021-04-22
1010
### Major Changes
1111
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
12+
- update Barracuda to 2.0.0-pre.3.
1213
- The minimum supported Unity version was updated to 2019.4. (#5166)
1314
- Several breaking interface changes were made. See the
1415
[Migration Guide](https://github.com/Unity-Technologies/ml-agents/blob/release_17_docs/docs/Migrating.md) for more

com.unity.ml-agents/Runtime/Academy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public class Academy : IDisposable
107107
/// Unity package version of com.unity.ml-agents.
108108
/// This must match the version string in package.json and is checked in a unit test.
109109
/// </summary>
110-
internal const string k_PackageVersion = "2.0.0-pre.2";
110+
internal const string k_PackageVersion = "2.0.0-pre.3";
111111

112112
const int k_EditorTrainingPort = 5004;
113113

com.unity.ml-agents/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
22
"name": "com.unity.ml-agents",
33
"displayName": "ML Agents",
4-
"version": "2.0.0-pre.2",
4+
"version": "2.0.0-pre.3",
55
"unity": "2019.4",
66
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
77
"dependencies": {
8-
"com.unity.barracuda": "2.0.0-pre.2",
8+
"com.unity.barracuda": "2.0.0-pre.3",
99
"com.unity.modules.imageconversion": "1.0.0",
1010
"com.unity.modules.jsonserialize": "1.0.0"
1111
}

utils/validate_versions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ def set_version(
8585
f.write(new_contents)
8686

8787
if csharp_version is not None:
88-
package_version = f"{csharp_version}-pre.2"
88+
package_version = f"{csharp_version}-pre.3"
8989
if csharp_extensions_version is not None:
9090
# since this has never been promoted we need to keep
9191
# it in preview forever or CI will fail

0 commit comments

Comments
 (0)