diff --git a/Assets/YooAsset/CHANGELOG.md b/Assets/YooAsset/CHANGELOG.md
index 8ddf58b..6b7b62a 100644
--- a/Assets/YooAsset/CHANGELOG.md
+++ b/Assets/YooAsset/CHANGELOG.md
@@ -2,6 +2,35 @@
All notable changes to this package will be documented in this file.
+## [1.4.5-preview] - 2023-02-17
+
+### Fixed
+
+- (#67)修复了报告查看界面在Unity2021.3上的兼容性问题。
+- (#66)修复了在Unity2021.3上编辑器模拟模式运行报错的问题。
+
+### Changed
+
+- 接口变更:IPackRule
+
+ ````c#
+ ///
+ /// 资源打包规则接口
+ ///
+ public interface IPackRule
+ {
+ ///
+ /// 获取打包规则结果
+ ///
+ PackRuleResult GetPackRuleResult(PackRuleData data);
+
+ ///
+ /// 是否为原生文件打包规则
+ ///
+ bool IsRawFilePackRule();
+ }
+ ````
+
## [1.4.4-preview] - 2023-02-14
### Fixed