Skip to content

Commit

Permalink
Updated version validation and extensions version.
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelalonsojr committed Oct 4, 2024
1 parent 54664fc commit e70d023
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DevProject/Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
"depth": 0,
"source": "local",
"dependencies": {
"com.unity.ml-agents": "3.0.0-exp.1",
"com.unity.ml-agents": "3.0.0",
"com.unity.modules.physics": "1.0.0"
}
},
Expand Down
2 changes: 1 addition & 1 deletion Project/Packages/packages-lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
"depth": 0,
"source": "local",
"dependencies": {
"com.unity.ml-agents": "3.0.0-exp.1",
"com.unity.ml-agents": "3.0.0",
"com.unity.modules.physics": "1.0.0"
}
},
Expand Down
2 changes: 1 addition & 1 deletion com.unity.ml-agents.extensions/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.unity.ml-agents.extensions",
"displayName": "ML Agents Extensions",
"version": "0.6.1-exp.1",
"version": "0.6.1-preview",
"unity": "2023.2",
"description": "A source-only package for new features based on ML-Agents",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion utils/validate_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def set_version(
if csharp_extensions_version is not None:
# since this has never been promoted we need to keep
# it in preview forever or CI will fail
extension_version = f"{csharp_extensions_version}-exp.1"
extension_version = f"{csharp_extensions_version}-preview"
print(
f"Setting package version to {package_version} in {MLAGENTS_PACKAGE_JSON_PATH}"
f" and {MLAGENTS_EXTENSIONS_PACKAGE_JSON_PATH}"
Expand Down

0 comments on commit e70d023

Please sign in to comment.