Skip to content

Commit

Permalink
Bumps version into v0.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
gehongyan committed Nov 13, 2024
1 parent dde3020 commit b8bc165
Show file tree
Hide file tree
Showing 5 changed files with 31 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Kook.Net.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<PropertyGroup>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<VersionPrefix>0.9.4</VersionPrefix>
<VersionPrefix>0.9.5</VersionPrefix>
<!-- <VersionSuffix>beta5</VersionSuffix>-->
<IsPackable>false</IsPackable>
<IsTrimmable>false</IsTrimmable>
Expand Down
11 changes: 11 additions & 0 deletions docs/changelog/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

### 新增
Expand Down
6 changes: 6 additions & 0 deletions docs/demos/demos.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion src/Kook.Net.Pipe/Kook.Net.Pipe.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<PropertyGroup>
<RootNamespace>Kook.Pipe</RootNamespace>
<IsPackable>false</IsPackable>
<IsPackable>true</IsPackable>
<PackageId>Kook.Net.Pipe</PackageId>
<Description>The Pipe API implementation for Kook.Net.</Description>
</PropertyGroup>
Expand Down

0 comments on commit b8bc165

Please sign in to comment.