Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare 0.17.4 release #542

Merged
merged 4 commits into from
May 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 14 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ jobs:
- os: ubuntu-latest
rust: beta
features: --all-features
- os: ubuntu-latest
rust: 1.58
features: --features improved_unicode
- os: ubuntu-latest
rust: stable
features: --all-features
Expand Down Expand Up @@ -66,6 +63,20 @@ jobs:
command: test
args: --workspace ${{ matrix.features }} ${{ matrix.target }}

msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: "1.62.1"
override: true
- uses: actions-rs/cargo@v1
with:
command: check
args: --lib --all-features

lint:
runs-on: ubuntu-latest
steps:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "indicatif"
description = "A progress bar and cli reporting library for Rust"
version = "0.17.3"
version = "0.17.4"
keywords = ["cli", "progress", "pb", "colors", "progressbar"]
categories = ["command-line-interface"]
license = "MIT"
Expand All @@ -10,7 +10,7 @@ documentation = "https://docs.rs/indicatif"
readme = "README.md"
edition = "2018"
exclude = ["screenshots/*"]
rust-version = "1.58"
rust-version = "1.62.1"

[dependencies]
console = { version = "0.15", default-features = false, features = ["ansi-parsing"] }
Expand All @@ -23,7 +23,7 @@ unicode-width = { version = "0.1", optional = true }
vt100 = { version = "0.15.1", optional = true }

[dev-dependencies]
clap = { version = "3", features = ["color", "derive"] }
clap = { version = "4", features = ["color", "derive"] }
once_cell = "1"
rand = "0.8"
tokio = { version = "1", features = ["fs", "time", "rt"] }
Expand Down