Skip to content

Commit 86f63d9

Browse files
author
Jonathan Harper
committed
Update package and communicator versions to 0.11
1 parent c63fb43 commit 86f63d9

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

UnitySDK/Assets/ML-Agents/Scripts/Academy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public EnvironmentConfiguration(
9292
"docs/Learning-Environment-Design-Academy.md")]
9393
public abstract class Academy : MonoBehaviour
9494
{
95-
private const string k_ApiVersion = "API-10";
95+
private const string k_ApiVersion = "API-11";
9696

9797
/// Temporary storage for global gravity value
9898
/// Used to restore oringal value when deriving Academy modifies it

gym-unity/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup, find_packages
66
from setuptools.command.install import install
77

8-
VERSION = "0.11.0.dev0"
8+
VERSION = "0.11.0"
99

1010

1111
class VerifyVersionCommand(install):

ml-agents-envs/mlagents/envs/environment.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def __init__(
7272
atexit.register(self._close)
7373
self.port = base_port + worker_id
7474
self._buffer_size = 12000
75-
self._version_ = "API-10"
75+
self._version_ = "API-11"
7676
self._loaded = (
7777
False
7878
) # If true, this means the environment was successfully loaded

ml-agents-envs/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from setuptools import setup
44
from setuptools.command.install import install
55

6-
VERSION = "0.11.0.dev0"
6+
VERSION = "0.11.0"
77

88
here = os.path.abspath(os.path.dirname(__file__))
99

ml-agents/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup, find_namespace_packages
66
from setuptools.command.install import install
77

8-
VERSION = "0.11.0.dev0"
8+
VERSION = "0.11.0"
99

1010
here = os.path.abspath(os.path.dirname(__file__))
1111

0 commit comments

Comments
 (0)