Skip to content

Commit 44eb2bd

Browse files
Updated version numbers. (#5993)
1 parent 9ff803a commit 44eb2bd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed
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.extensions",
33
"displayName": "ML Agents Extensions",
4-
"version": "0.6.1-preview",
4+
"version": "0.6.1-exp.1",
55
"unity": "2022.3",
66
"description": "A source-only package for new features based on ML-Agents",
77
"dependencies": {
8-
"com.unity.ml-agents": "2.3.0-exp.4",
8+
"com.unity.ml-agents": "3.0.0-exp.1",
99
"com.unity.modules.physics": "1.0.0"
1010
}
1111
}

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.3.0-exp.4";
110+
internal const string k_PackageVersion = "3.0.0-exp.1";
111111

112112
const int k_EditorTrainingPort = 5004;
113113

com.unity.ml-agents/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "com.unity.ml-agents",
33
"displayName": "ML Agents",
4-
"version": "2.3.0-exp.4",
4+
"version": "3.0.0-exp.1",
55
"unity": "2022.3",
66
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
77
"dependencies": {
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Version of the library that will be used to upload to pypi
2-
__version__ = "0.31.0.dev0"
2+
__version__ = "1.1.0.dev0"
33

44
# Git tag that will be checked to determine whether to trigger upload to pypi
55
__release_tag__ = None
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Version of the library that will be used to upload to pypi
2-
__version__ = "0.31.0.dev0"
2+
__version__ = "1.1.0.dev0"
33

44
# Git tag that will be checked to determine whether to trigger upload to pypi
55
__release_tag__ = None

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
if csharp_extensions_version is not None:
8686
# since this has never been promoted we need to keep
8787
# it in preview forever or CI will fail
88-
extension_version = f"{csharp_extensions_version}-preview"
88+
extension_version = f"{csharp_extensions_version}-exp.1"
8989
print(
9090
f"Setting package version to {package_version} in {MLAGENTS_PACKAGE_JSON_PATH}"
9191
f" and {MLAGENTS_EXTENSIONS_PACKAGE_JSON_PATH}"

0 commit comments

Comments
 (0)