Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
DivanadiumPentaoxide committed Nov 13, 2024
1 parent 8824529 commit ec039ce
Showing 3 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Changelog

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/)

## [Unreleased]

## [0.6.5] - 2024-11-13

### Added
- Add CustomEvent

### Changed

- Change this repo open-sourced
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@
使用 `C++` 编写,真正实现无锁多线程运行,带来最好的、最真实的性能。
相同条件下,运行速度是目前常用的一些Python机器人框架的近百倍,实现真正的高性能,即使非常大的数据量也能吞吐自如。

我们注重真实性能优化,必要时使用线程池进行管理,而非打着异步噱头。(事实上,例如常用的Python里面,`async``await`的异步是协程实现的,依旧是单线程,只能在IO密集型环境下提高性能,而如果大量时间在解析数据上,使用异步不仅不会带来性能的提升,还会带来性能严重的下降,因为处理依旧是单线程,而创建异步需要额外开销)
我们注重真实性能优化,必要时使用线程池进行管理,真正实现并发处理,而非打着异步噱头。(事实上,例如常用的Python里面,`async``await`的异步是协程实现的,依旧是单线程,只能在IO密集型环境下提高性能,而如果大量时间在解析数据上,使用异步不仅不会带来性能的提升,还会带来性能严重的下降,因为处理依旧是单线程,而创建异步需要额外开销)

### 模块化

2 changes: 1 addition & 1 deletion src/core/Version.hpp
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@

#define KOBE_VERSION_MAJOR 0
#define KOBE_VERSION_MINOR 6
#define KOBE_VERSION_PATCH 4
#define KOBE_VERSION_PATCH 5

#define KOBE_VERSION_STRING \
fmt::format("{}-{}.{}.{}", BOT_NAME, KOBE_VERSION_MAJOR, KOBE_VERSION_MINOR, KOBE_VERSION_PATCH)

0 comments on commit ec039ce

Please sign in to comment.