Skip to content

Commit d0ccd68

Browse files
author
Ervin T
authored
Update version numbers and changelog for release 3 branch (#4076)
1 parent c7c870b commit d0ccd68

File tree

6 files changed

+8
-22
lines changed

6 files changed

+8
-22
lines changed

com.unity.ml-agents/CHANGELOG.md

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,6 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to
77
[Semantic Versioning](http://semver.org/spec/v2.0.0.html).
88

9-
## [Unreleased]
10-
11-
### Major Changes
12-
#### com.unity.ml-agents (C#)
13-
#### ml-agents / ml-agents-envs / gym-unity (Python)
14-
15-
### Minor Changes
16-
#### com.unity.ml-agents (C#)
17-
#### ml-agents / ml-agents-envs / gym-unity (Python)
18-
19-
### Bug Fixes
20-
#### com.unity.ml-agents (C#)
21-
#### ml-agents / ml-agents-envs / gym-unity (Python)
22-
239
## [1.1.0-preview] - 2020-06-10
2410
### Major Changes
2511
#### com.unity.ml-agents (C#)

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.0.2-preview";
71+
internal const string k_PackageVersion = "1.1.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.0.2-preview",
4+
"version": "1.1.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: 2 additions & 2 deletions
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.17.0.dev0"
2+
__version__ = "0.17.0"
33

44
# Git tag that will be checked to determine whether to trigger upload to pypi
5-
__release_tag__ = None
5+
__release_tag__ = "release_3"
Lines changed: 2 additions & 2 deletions
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.17.0.dev0"
2+
__version__ = "0.17.0"
33

44
# Git tag that will be checked to determine whether to trigger upload to pypi
5-
__release_tag__ = None
5+
__release_tag__ = "release_3"
Lines changed: 2 additions & 2 deletions
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.17.0.dev0"
2+
__version__ = "0.17.0"
33

44
# Git tag that will be checked to determine whether to trigger upload to pypi
5-
__release_tag__ = None
5+
__release_tag__ = "release_3"

0 commit comments

Comments
 (0)