Skip to content

Commit

Permalink
Bumped versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelalonsojr committed Oct 4, 2024
1 parent 057e264 commit b27442f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
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-preview",
"version": "0.6.1-exp.1",
"unity": "2023.2",
"description": "A source-only package for new features based on ML-Agents",
"dependencies": {
Expand Down
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 = "3.0.0";
internal const string k_PackageVersion = "3.0.0-exp.1";

const int k_EditorTrainingPort = 5004;

Expand Down
6 changes: 3 additions & 3 deletions 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": "3.0.0",
"version": "3.0.0-exp.1",
"unity": "2023.2",
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
"dependencies": {
Expand All @@ -12,8 +12,8 @@
},
"samples": [
{
"displayName":"3D Ball",
"description":"The 3D Ball sample is a simple environment that is a great for jumping into ML-Agents to see how things work.",
"displayName": "3D Ball",
"description": "The 3D Ball sample is a simple environment that is a great for jumping into ML-Agents to see how things work.",
"path": "Samples~/3DBall"
}
]
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__ = "1.1.0.dev0"
__version__ = "1.2.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__ = "1.1.0.dev0"
__version__ = "1.2.0.dev0"

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

0 comments on commit b27442f

Please sign in to comment.