diff --git a/Data~/hybridclr_version.json b/Data~/hybridclr_version.json index 0e7b29d..252745b 100644 --- a/Data~/hybridclr_version.json +++ b/Data~/hybridclr_version.json @@ -2,8 +2,13 @@ "versions": [ { "unity_version":"2021", - "hybridclr" : { "branch":"v3.0.0"}, + "hybridclr" : { "branch":"v3.0.1"}, "il2cpp_plus": { "branch":"v2021-3.0.0"} + }, + { + "unity_version":"2022", + "hybridclr" : { "branch":"v3.0.1"}, + "il2cpp_plus": { "branch":"v2022-3.0.0"} } ] } \ No newline at end of file diff --git a/Editor/Installer/InstallerController.cs b/Editor/Installer/InstallerController.cs index 308da8d..8db12e9 100644 --- a/Editor/Installer/InstallerController.cs +++ b/Editor/Installer/InstallerController.cs @@ -103,7 +103,7 @@ namespace HybridCLR.Editor.Installer switch(majorVersion) { case 2021: return $"2021.3.{min2021_3_CompatibleMinorVersion}"; - case 2022: return $"2022.2.{min2022_3_CompatibleMinorVersion}"; + case 2022: return $"2022.3.{min2022_3_CompatibleMinorVersion}"; default: throw new Exception($"not support version:{majorVersion}"); } } @@ -123,7 +123,7 @@ namespace HybridCLR.Editor.Installer } case 2022: { - if (version.minor1 != 2) + if (version.minor1 != 3) { return false; } diff --git a/RELEASELOG.md b/RELEASELOG.md index 5fff2b2..deec350 100644 --- a/RELEASELOG.md +++ b/RELEASELOG.md @@ -1,5 +1,11 @@ # 发布日志 +## 3.0.1 + +### 改动 + +- 支持2022.3.0 + ## 3.0.0 ### 修复 diff --git a/package.json b/package.json index 751332c..c0a3d6b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "com.code-philosophy.hybridclr", - "version": "3.0.0", + "version": "3.0.1", "displayName": "HybridCLR", "description": "HybridCLR is a fully featured, zero-cost, high-performance, low-memory solution for Unity's all-platform native c# hotupdate.", "category": "Runtime",