Skip to content

Commit

Permalink
chore: bump tools version (#16155)
Browse files Browse the repository at this point in the history
  • Loading branch information
xxchan authored and yezizp2012 committed Apr 7, 2024
1 parent c62019f commit 9fbda61
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/typo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
uses: actions/checkout@v3

- name: Check spelling of the entire repository
uses: crate-ci/typos@v1.15.0
uses: crate-ci/typos@v1.20.4
6 changes: 4 additions & 2 deletions .typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ nd = "nd" # N-dimentional / 2nd
steam = "stream" # You played with Steam games too much.
# Some weird short variable names
ot = "ot"
bui = "bui"
bui = "bui" # BackwardUserIterator
mosquitto = "mosquitto" # This is a MQTT broker.

abd = "abd"
iy = "iy"
Pn = "Pn"
[default.extend-identifiers]

[files]
Expand Down
4 changes: 2 additions & 2 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ skip_core_tasks = true
skip_git_env_info = true
skip_rust_env_info = false
skip_crate_env_info = true
min_version = "0.36.10"
min_version = "0.37.1"

[tasks.clean-full]
category = "Misc"
Expand Down Expand Up @@ -1132,7 +1132,7 @@ fi
private = true
category = "RiseDev - Check"
description = "Run cargo typos-cli check"
install_crate = { min_version = "1.15.0", crate_name = "typos-cli", binary = "typos", test_arg = [
install_crate = { min_version = "1.20.4", crate_name = "typos-cli", binary = "typos", test_arg = [
"--help",
], install_command = "binstall" }
script = """
Expand Down
2 changes: 1 addition & 1 deletion risedev
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ fi

if [ -z "$(which cargo-make)" ]; then
echo "Installing cargo-make..."
cargo binstall cargo-make --version "^0.36.10" --locked # >= 0.36.10, < 0.37.0
cargo binstall cargo-make@~0.37 --locked
fi

touch risedev-components.user.env
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl<B: FileWriterBuilder> FileWriter for MonitoredBaseFileWriter<B> {
Ok(())
}

/// Complte the write and return the list of `DataFile` as result.
/// Complete the write and return the list of `DataFile` as result.
async fn close(self) -> Result<Vec<Self::R>> {
let res = self.inner.close().await?;
let delta = (res.len() - self.cur_metrics.unflush_data_file) as i64;
Expand Down
2 changes: 1 addition & 1 deletion src/meta/src/hummock/manager/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1748,7 +1748,7 @@ async fn test_split_compaction_group_trivial_expired() {
.report_compact_task(task.task_id, TaskStatus::Success, vec![], None)
.await
.unwrap();
// the task has been canceld
// the task has been canceled
assert!(!ret);
}

Expand Down

0 comments on commit 9fbda61

Please sign in to comment.