From b4279d399c99b21397dfaf5897ccb18c94de2e02 Mon Sep 17 00:00:00 2001 From: KwanJoong Lee Date: Mon, 23 Jun 2025 18:20:07 +0900 Subject: [PATCH] fix: Add missing UniTask reference in Runtime.asmdef - Fixes compilation errors when using WebViewRpc - Update version to 1.0.2 --- CHANGELOG.md | 6 ++++++ Packages/WebviewRpc/Runtime/Runtime.asmdef | 4 +++- Packages/WebviewRpc/package.json | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 93fa131..3aba2e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.2] - 2025-06-23 + +### Fixed +- Added missing UniTask reference in Runtime.asmdef +- This fixes compilation errors when using the package + ## [1.0.1] - 2025-06-23 ### Changed diff --git a/Packages/WebviewRpc/Runtime/Runtime.asmdef b/Packages/WebviewRpc/Runtime/Runtime.asmdef index 85a4962..adcbce4 100644 --- a/Packages/WebviewRpc/Runtime/Runtime.asmdef +++ b/Packages/WebviewRpc/Runtime/Runtime.asmdef @@ -1,7 +1,9 @@ { "name": "Runtime", "rootNamespace": "WebviewRpc", - "references": [], + "references": [ + "UniTask" + ], "includePlatforms": [], "excludePlatforms": [], "allowUnsafeCode": false, diff --git a/Packages/WebviewRpc/package.json b/Packages/WebviewRpc/package.json index 87a63b9..283721a 100644 --- a/Packages/WebviewRpc/package.json +++ b/Packages/WebviewRpc/package.json @@ -1,6 +1,6 @@ { "name": "com.kwanjoong.webviewrpc", - "version": "1.0.1", + "version": "1.0.2", "displayName": "Webview RPC", "description": "The webview Remote Procedure Call bridge.", "unity": "2022.3",