Skip to content

Commit

Permalink
Bump to 0.50 (#56)
Browse files Browse the repository at this point in the history
* Bump to 0.50

* Allow unused imports

* Reorder CI jobs
  • Loading branch information
kubouch authored Jan 22, 2024
1 parent 6c7e262 commit eaf4f5f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ jobs:
toolchain: ${{ matrix.rust }}
components: rustfmt, clippy

- run: cargo fmt --check --all
- run: cargo clippy -- -D warnings
- run: cargo build --all-features
- run: cargo test
- run: cargo test --all-features
- run: cargo fmt --check --all
- run: cargo clippy -- -D warnings
- run: cargo run --example 256_colors
- run: cargo run --example hyperlink
- run: cargo run --example title
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ edition = "2021"
rust-version = "1.62.1"
license = "MIT"
name = "nu-ansi-term"
version = "0.49.0"
version = "0.50.0"
repository = "https://github.com/nushell/nu-ansi-term"

[lib]
Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ pub use display::*;
mod write;

mod windows;
#[allow(unused_imports)]
pub use crate::windows::*;

mod util;
Expand Down

0 comments on commit eaf4f5f

Please sign in to comment.