-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* *: bump 0.4.2 Signed-off-by: lucasliang <[email protected]> * Bugfix. Signed-off-by: lucasliang <[email protected]> * Update toolchain. Signed-off-by: lucasliang <[email protected]> * Correct version Signed-off-by: lucasliang <[email protected]> * Fix clippy errors. Signed-off-by: lucasliang <[email protected]> * Fix test compilation errs. Signed-off-by: lucasliang <[email protected]> * Polish changelog and upload codecov report with TOKEN. Signed-off-by: lucasliang <[email protected]> * Fix MacOS compilation errs. Signed-off-by: lucasliang <[email protected]> * Revert "Fix MacOS compilation errs." This reverts commit 5277389. Signed-off-by: lucasliang <[email protected]> * Optimize the ci workflow. Signed-off-by: lucasliang <[email protected]> * Downgrade the version to meet the space usage limit of CI. Signed-off-by: lucasliang <[email protected]> --------- Signed-off-by: lucasliang <[email protected]>
- Loading branch information
1 parent
e505d63
commit 084c5ca
Showing
8 changed files
with
26 additions
and
14 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
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,14 +1,14 @@ | ||
[package] | ||
name = "raft-engine-ctl" | ||
version = "0.4.1" | ||
version = "0.4.2" | ||
authors = ["The TiKV Project Developers"] | ||
edition = "2018" | ||
rust-version = "1.61.0" | ||
rust-version = "1.75.0" | ||
description = "A control tool for Raft Engine" | ||
repository = "https://github.com/tikv/raft-engine" | ||
license = "Apache-2.0" | ||
|
||
[dependencies] | ||
clap = { version = "3.1", features = ["derive", "cargo"] } | ||
env_logger = "0.10" | ||
raft-engine = { path = "..", version = "0.4.1", features = ["scripting", "internals"] } | ||
raft-engine = { path = "..", version = "0.4.2", features = ["scripting", "internals"] } |
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.4.1" | ||
version = "0.4.2" | ||
authors = ["The TiKV Authors"] | ||
edition = "2018" | ||
|
||
|