From b8bc1655a6c1990e4919d240e9701ac2d9860e84 Mon Sep 17 00:00:00 2001 From: Gehongyan Date: Wed, 13 Nov 2024 17:29:31 +0800 Subject: [PATCH] Bumps version into v0.9.5 --- CHANGELOG.md | 12 ++++++++++++ Kook.Net.targets | 2 +- docs/changelog/changelog.md | 11 +++++++++++ docs/demos/demos.md | 6 ++++++ src/Kook.Net.Pipe/Kook.Net.Pipe.csproj | 2 +- 5 files changed, 31 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 59c6b7f1..b5cba100 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,18 @@ --- +## v0.9.5 [2024-11-13] + +### Added + +- Added the Kook.Net.Pipe package, which provides `KookPipeClient` for sending pipe messages. +- Added `TokenType.Pipe`, but it is only used to indicate the internal API client to log in with a pipe token type + and should not be used for client login in user code. + +### Misc + +- Removed the target framework .NET 7.0, added the target framework .NET 9.0. + ## v0.9.4 [2024-11-12] ### Added diff --git a/Kook.Net.targets b/Kook.Net.targets index c406a6b4..93c5d02b 100644 --- a/Kook.Net.targets +++ b/Kook.Net.targets @@ -2,7 +2,7 @@ enable enable - 0.9.4 + 0.9.5 false false diff --git a/docs/changelog/changelog.md b/docs/changelog/changelog.md index 76b68964..d6b12a41 100644 --- a/docs/changelog/changelog.md +++ b/docs/changelog/changelog.md @@ -5,6 +5,17 @@ title: 变更日志 # 变更日志 +## v0.9.5 [2024-11-13] + +### 新增 + +- 新增 Kook.Net.Pipe 包,提供 `KookPipeClient`,用于发送管道消息。 +- 新增 `TokenType.Pipe`,但仅用于指示内部 API 客户端以管道令牌类型登录,不应用于用户代码的客户端登录。 + +### 其它 + +- 移除目标框架 .NET 7.0,添加目标框架 .NET 9.0。 + ## v0.9.4 [2024-11-12] ### 新增 diff --git a/docs/demos/demos.md b/docs/demos/demos.md index 6b17f460..9481721a 100644 --- a/docs/demos/demos.md +++ b/docs/demos/demos.md @@ -29,6 +29,12 @@ title: 示例项目 该示例项目演示了如何使用 HttpListener 来创建一个 Webhook 服务,以接收来自 Kook.Net 的事件。 +## 管道消息 + +### [Kook.Net.Samples.Pipe](https://github.com/gehongyan/Kook.Net/tree/master/samples/Kook.Net.Samples.Pipe) + +该示例项目演示了如何发送管道消息。 + ## 文本命令框架 ### [Kook.Net.Samples.TextCommands](https://github.com/gehongyan/Kook.Net/tree/master/samples/Kook.Net.Samples.TextCommands) diff --git a/src/Kook.Net.Pipe/Kook.Net.Pipe.csproj b/src/Kook.Net.Pipe/Kook.Net.Pipe.csproj index 994a1e32..cdb75d7d 100644 --- a/src/Kook.Net.Pipe/Kook.Net.Pipe.csproj +++ b/src/Kook.Net.Pipe/Kook.Net.Pipe.csproj @@ -4,7 +4,7 @@ Kook.Pipe - false + true Kook.Net.Pipe The Pipe API implementation for Kook.Net.