add unreleased section to changelog

This commit is contained in:
mahon94 2022-11-18 14:54:53 -08:00
Родитель 26ec9e6200
Коммит db4369089e
4 изменённых файлов: 20 добавлений и 3 удалений

Просмотреть файл

@ -5,7 +5,7 @@
"unity": "2021.3", "unity": "2021.3",
"description": "A source-only package for new features based on ML-Agents", "description": "A source-only package for new features based on ML-Agents",
"dependencies": { "dependencies": {
"com.unity.ml-agents": "2.3.0-exp.4", "com.unity.ml-agents": "2.3.0-exp.3",
"com.unity.modules.physics": "1.0.0" "com.unity.modules.physics": "1.0.0"
} }
} }

Просмотреть файл

@ -6,6 +6,23 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to and this project adheres to
[Semantic Versioning](http://semver.org/spec/v2.0.0.html). [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
## [Unreleased]
### Major Changes
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
#### ml-agents / ml-agents-envs
### Minor Changes
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
#### ml-agents / ml-agents-envs
### Bug Fixes
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)
#### ml-agents / ml-agents-envs
## [2.3.0-exp.3] - 2022-11-21 ## [2.3.0-exp.3] - 2022-11-21
### Major Changes ### Major Changes
#### com.unity.ml-agents / com.unity.ml-agents.extensions (C#) #### com.unity.ml-agents / com.unity.ml-agents.extensions (C#)

Просмотреть файл

@ -107,7 +107,7 @@ namespace Unity.MLAgents
/// Unity package version of com.unity.ml-agents. /// Unity package version of com.unity.ml-agents.
/// This must match the version string in package.json and is checked in a unit test. /// This must match the version string in package.json and is checked in a unit test.
/// </summary> /// </summary>
internal const string k_PackageVersion = "2.3.0-exp.4"; internal const string k_PackageVersion = "2.3.0-exp.3";
const int k_EditorTrainingPort = 5004; const int k_EditorTrainingPort = 5004;

Просмотреть файл

@ -1,7 +1,7 @@
{ {
"name": "com.unity.ml-agents", "name": "com.unity.ml-agents",
"displayName": "ML Agents", "displayName": "ML Agents",
"version": "2.3.0-exp.4", "version": "2.3.0-exp.3",
"unity": "2021.3", "unity": "2021.3",
"description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).", "description": "Use state-of-the-art machine learning to create intelligent character behaviors in any Unity environment (games, robotics, film, etc.).",
"dependencies": { "dependencies": {