From 39b56366a6334d2eb79647b653ebd6b88f433540 Mon Sep 17 00:00:00 2001 From: Jesse Olmer Date: Tue, 1 Jun 2021 08:59:49 -0700 Subject: [PATCH 1/3] fix: Update package patch version to allow package registry re-publish --- com.unity.multiplayer.mlapi/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.multiplayer.mlapi/package.json b/com.unity.multiplayer.mlapi/package.json index a0478c2802..862c0a18d5 100644 --- a/com.unity.multiplayer.mlapi/package.json +++ b/com.unity.multiplayer.mlapi/package.json @@ -1,7 +1,7 @@ { "name": "com.unity.multiplayer.mlapi", "displayName": "MLAPI Networking Library", - "version": "0.1.0", + "version": "0.1.1", "unity": "2019.4", "unityRelease": "8f1", "description": "This the Core Unity Mid-level API that provides core SDK for multiplayer games within unity", From bd223cfb50bceada9821c70f3002e6d7aef6b530 Mon Sep 17 00:00:00 2001 From: Lori Krell <76010626+lkrell@users.noreply.github.com> Date: Tue, 1 Jun 2021 12:20:42 -0500 Subject: [PATCH 2/3] docs: Hotfix Changelog for 0.1.1 and manual update (#873) * hotfix note and manual links --- com.unity.multiplayer.mlapi/CHANGELOG.md | 8 ++++++++ com.unity.multiplayer.mlapi/Documentation~/Manual.md | 10 ++++++++-- 2 files changed, 16 insertions(+), 2 deletions(-) diff --git a/com.unity.multiplayer.mlapi/CHANGELOG.md b/com.unity.multiplayer.mlapi/CHANGELOG.md index bce9ebe5a0..d94ff0a3d8 100644 --- a/com.unity.multiplayer.mlapi/CHANGELOG.md +++ b/com.unity.multiplayer.mlapi/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog This file documents all notable changes to this package. Additional documentation and release notes are available at [Multiplayer Documentation](https://docs-multiplayer.unity3d.com). +## [0.1.0] - 2021-06-01 + +This is hotfix v0.1.1 for the initial experimental Unity MLAPI Package. + +### Changes + +* Fixed issue with the Unity Registry package version missing some fixes from the v0.1.0 release. + ## [0.1.0] - 2021-03-23 This is the initial experimental Unity MLAPI Package, v0.1.0. diff --git a/com.unity.multiplayer.mlapi/Documentation~/Manual.md b/com.unity.multiplayer.mlapi/Documentation~/Manual.md index bb9e00934c..b6150fe3d6 100644 --- a/com.unity.multiplayer.mlapi/Documentation~/Manual.md +++ b/com.unity.multiplayer.mlapi/Documentation~/Manual.md @@ -4,10 +4,15 @@ Unity MLAPI is a high level networking library built for the Unity game engine t ## Unity MLAPI - See this guide to install Unity MLAPI, set up your project, and get started with your first networked game. - [First Steps with Unity MLAPI](https://docs-multiplayer.unity3d.com/docs/tutorials/helloworldintro) +See this guide to install Unity MLAPI, set up your project, and get started with your first networked game. + +* [MLAPI Documentation](https://docs-multiplayer.unity3d.com/docs/getting-started/about-mlapi) +* [Install MLAPI](https://docs-multiplayer.unity3d.com/docs/migration/install) +* [First Steps with Unity MLAPI](https://docs-multiplayer.unity3d.com/docs/tutorials/helloworldintro) +* [MLAPI API Reference](https://docs-multiplayer.unity3d.com/docs/mlapi-api/introduction) # Technical details + ## Requirements This version of MLAPI is compatible with the following versions of the Unity Editor: @@ -20,3 +25,4 @@ This version of MLAPI is compatible with the following versions of the Unity Edi |Date|Reason| |---|---| |March 10, 2021|Document created. Matches package version 0.1.0| +|June 1, 2021| Updated and added links for additional content. Matches patch version 0.1.0 and hotfixes.| From fa15fc6fddc9cf0216fa68dde7137ceb9f9152fb Mon Sep 17 00:00:00 2001 From: Jesse Olmer Date: Tue, 1 Jun 2021 10:26:38 -0700 Subject: [PATCH 3/3] docs: Fix typo in changelog version title --- com.unity.multiplayer.mlapi/CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/com.unity.multiplayer.mlapi/CHANGELOG.md b/com.unity.multiplayer.mlapi/CHANGELOG.md index d94ff0a3d8..b4a47f29ca 100644 --- a/com.unity.multiplayer.mlapi/CHANGELOG.md +++ b/com.unity.multiplayer.mlapi/CHANGELOG.md @@ -1,7 +1,7 @@ # Changelog This file documents all notable changes to this package. Additional documentation and release notes are available at [Multiplayer Documentation](https://docs-multiplayer.unity3d.com). -## [0.1.0] - 2021-06-01 +## [0.1.1] - 2021-06-01 This is hotfix v0.1.1 for the initial experimental Unity MLAPI Package.