From 6256231c77c4e7301a3d6aaf6a2d1ed66000274a Mon Sep 17 00:00:00 2001 From: zombieyang Date: Tue, 9 Jan 2024 09:54:04 +0800 Subject: [PATCH] [unity] changelog for 2.0.4 --- unity/Assets/core/upm/changelog-hans.md | 6 ++++++ unity/Assets/core/upm/changelog.md | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/unity/Assets/core/upm/changelog-hans.md b/unity/Assets/core/upm/changelog-hans.md index 7e6d2836bb..7e46bd79a5 100644 --- a/unity/Assets/core/upm/changelog-hans.md +++ b/unity/Assets/core/upm/changelog-hans.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. you can get the english version change log at [Github Release](https://github.com/Tencent/puerts/releases) +## [2.0.4] - 2024-01-09 +1. 修复:调用extension方法并且方法带out或者ref参数会报错 +2. 修复:将JSObject赋值为null会报错 +3. 修复:调用带默认参数的extension函数时index读取不正确的bug +4. 修复:xil2cpp下,值类型无参构造字段为随机值的问题 + ## [2.0.3] - 2023-11-02 1. 重要:遵循Assetstore策略,生成菜单由PuerTS改到了Tools/PuerTS内 2. 功能:支持dynamic import(即`import()`)#1540 diff --git a/unity/Assets/core/upm/changelog.md b/unity/Assets/core/upm/changelog.md index c73c7ad5d0..04252ee4cd 100644 --- a/unity/Assets/core/upm/changelog.md +++ b/unity/Assets/core/upm/changelog.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. you can get the english version change log at [Github Release](https://github.com/Tencent/puerts/releases) +## [2.0.4] - 2024-01-09 +1. fix: the error when invoking extension method with out/ref args. +2. fix: the error when set a JSObject to `null`. +3. fix: the error when getting the arg index when invoking extension method with default arguments value. +4. fix: members of valuetype created by paramless ctor will be random value. + ## [2.0.3] - 2023-11-02 1. important!: to follow the rules of Assetstore, move the generation menu from `PuerTS` to `Tools/PuerTS` 2. feature: support dynamic import (`import()`) #1540