Skip to content

Commit

Permalink
Updated version numbers. (#5993)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelalonsojr authored Oct 9, 2023
1 parent 9ff803a commit 44eb2bd
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions com.unity.ml-agents.extensions/package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "com.unity.ml-agents.extensions",
"displayName": "ML Agents Extensions",
"version": "0.6.1-preview",
"version": "0.6.1-exp.1",
"unity": "2022.3",
"description": "A source-only package for new features based on ML-Agents",
"dependencies": {
"com.unity.ml-agents": "2.3.0-exp.4",
"com.unity.ml-agents": "3.0.0-exp.1",
"com.unity.modules.physics": "1.0.0"
}
}
2 changes: 1 addition & 1 deletion com.unity.ml-agents/Runtime/Academy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public class Academy : IDisposable
/// Unity package version of com.unity.ml-agents.
/// This must match the version string in package.json and is checked in a unit test.
/// </summary>
internal const string k_PackageVersion = "2.3.0-exp.4";
internal const string k_PackageVersion = "3.0.0-exp.1";

const int k_EditorTrainingPort = 5004;

Expand Down
2 changes: 1 addition & 1 deletion com.unity.ml-agents/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "com.unity.ml-agents",
"displayName": "ML Agents",
"version": "2.3.0-exp.4",
"version": "3.0.0-exp.1",
"unity": "2022.3",
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion ml-agents-envs/mlagents_envs/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Version of the library that will be used to upload to pypi
__version__ = "0.31.0.dev0"
__version__ = "1.1.0.dev0"

# Git tag that will be checked to determine whether to trigger upload to pypi
__release_tag__ = None
2 changes: 1 addition & 1 deletion ml-agents/mlagents/trainers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Version of the library that will be used to upload to pypi
__version__ = "0.31.0.dev0"
__version__ = "1.1.0.dev0"

# Git tag that will be checked to determine whether to trigger upload to pypi
__release_tag__ = None
2 changes: 1 addition & 1 deletion utils/validate_versions.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,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}-preview"
extension_version = f"{csharp_extensions_version}-exp.1"
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 44eb2bd

Please sign in to comment.