-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* bump 0.2.0 Signed-off-by: tabokie <xy.tao@outlook.com> * update rustc Signed-off-by: tabokie <xy.tao@outlook.com> * add changelog Signed-off-by: tabokie <xy.tao@outlook.com>
- Loading branch information
Showing
5 changed files
with
29 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# Raft Engine Change Log | ||
|
||
## [Unreleased] | ||
|
||
## [0.2.0] - 2022-05-25 | ||
|
||
### Bug Fixes | ||
|
||
* Fix a false negative case of `LogBatch::is_empty()` #212 | ||
* Fix fsync ordering when rotating log file #219 | ||
|
||
### New Features | ||
|
||
* Support limiting the memory usage of Raft Engine under new feature `swap` #211 | ||
* Add a new Prometheus counter `raft_engine_memory_usage` to track memory usage #207 | ||
|
||
### Improvements | ||
|
||
* Reduce memory usage by 25% #206 | ||
|
||
### Public API Changes | ||
|
||
* Introduce a new error type `Full` #206 | ||
* `LogBatch::merge` returns a `Result<()>` instead of `()` #206 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "stress" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["The TiKV Authors"] | ||
edition = "2018" | ||
|
||
|