Skip to content

Commit 5be56c4

Browse files
awjulianiChris Elion
andauthored
Update version for release 4 (master) (#4207)
* Update version for release 4 * newline in json file * actually fix newline Co-authored-by: Chris Elion <[email protected]>
1 parent 722d0d4 commit 5be56c4

File tree

6 files changed

+6
-5
lines changed

6 files changed

+6
-5
lines changed

com.unity.ml-agents/Runtime/Academy.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ public class Academy : IDisposable
6868
/// Unity package version of com.unity.ml-agents.
6969
/// This must match the version string in package.json and is checked in a unit test.
7070
/// </summary>
71-
internal const string k_PackageVersion = "1.1.0-preview";
71+
internal const string k_PackageVersion = "1.2.0-preview";
7272

7373
const int k_EditorTrainingPort = 5004;
7474

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": "1.1.0-preview",
4+
"version": "1.2.0-preview",
55
"unity": "2018.4",
66
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
77
"dependencies": {

gym-unity/gym_unity/__init__.py

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.18.0.dev0"
2+
__version__ = "0.19.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.18.0.dev0"
2+
__version__ = "0.19.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.18.0.dev0"
2+
__version__ = "0.19.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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ def set_package_version(new_version: str) -> None:
9696
package_json["version"] = new_version
9797
with open(UNITY_PACKAGE_JSON_PATH, "w") as f:
9898
json.dump(package_json, f, indent=2)
99+
f.write("\n")
99100

100101

101102
def set_academy_version_string(new_version):

0 commit comments

Comments
 (0)