Skip to content

Commit

Permalink
10.2.1 release (#244)
Browse files Browse the repository at this point in the history
  • Loading branch information
s34m authored Nov 30, 2022
2 parents b440796 + 70616b2 commit 96e4de4
Show file tree
Hide file tree
Showing 18 changed files with 347 additions and 209 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/check-and-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
toolchain: '${{ env.RUST_VER }}'
targets: ${{ matrix.target }}
components: clippy, rustfmt
components: rustfmt

- name: Run cargo fmt
env:
TERM: xterm-256color
run: |
cargo fmt --all -- --check
Expand Down Expand Up @@ -72,8 +73,7 @@ jobs:
uses: dtolnay/rust-toolchain@master
with:
toolchain: '${{ env.RUST_VER }}'
targets: ${{ matrix.target }}
components: clippy, rustfmt
components: clippy

- name: Setup Rust Cache
uses: Swatinem/rust-cache@v2
Expand Down
109 changes: 65 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ keywords = ["upgrade", "update"]
license = "GPL-3.0"
# license-file = "LICENSE"
repository = "https://github.com/topgrade-rs/topgrade"
version = "10.2.0"
version = "10.2.1"
authors = ["Roey Darwish Dror <[email protected]>", "Thomas Schönauer <[email protected]>"]
exclude = ["doc/screenshot.gif"]
edition = "2021"
Expand All @@ -28,6 +28,8 @@ toml = "0.5"
which_crate = { version = "~4.1", package = "which" }
shellexpand = "~2.1"
clap = { version = "~3.1", features = ["cargo", "derive"] }
clap_complete = "~3.1"
clap_mangen = "~0.1"
walkdir = "~2.3"
console = "~0.15"
lazy_static = "~1.4"
Expand Down
4 changes: 4 additions & 0 deletions config.example.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
# Do not ask to retry failed steps (default: false)
#no_retry = true

# Run `sudo -v` to cache credentials at the start of the run; this avoids a
# blocking password prompt in the middle of a possibly-unattended run.
#pre_sudo = false

# Run inside tmux
#run_in_tmux = true

Expand Down
Loading

0 comments on commit 96e4de4

Please sign in to comment.