Skip to content

Commit

Permalink
Bump package version
Browse files Browse the repository at this point in the history
  • Loading branch information
athre0z committed Jul 30, 2023
1 parent adafb4d commit f06593c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog
All notable changes to this project will be documented in this file.

## [v0.6.0] (2023-07-30)
- Replace unmaintained `atty` crate with `std::io::IsTerminal`
- Minimum supported Rust version raised to 1.70 (hence the bump to 0.6)

## [v0.5.1] (2021-04-25)
- Add the ability to print module_name:offset, or address of frame
- Contributed by [@s1341], thanks!
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
[package]
name = "color-backtrace"
version = "0.5.1"
version = "0.6.0"
authors = ["Joel Höner <athre0z@zyantific.com>"]
edition = "2018"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/athre0z/color-backtrace"
description = "Colorful panic backtraces"
readme = "README.md"
rust-version = "1.70"

This comment has been minimized.

Copy link
@martin-g

martin-g Jul 31, 2023

Is there something that requires such new version of Rust ?

This comment has been minimized.

Copy link
@bjorn3

bjorn3 Jul 31, 2023

As mentioned in the changelog std::io::IsTerminal has been stabilized in 1.70.

This comment has been minimized.

Copy link
@athre0z

athre0z Jul 31, 2023

Author Owner

If this presents an issue for you I'd accept a PR with a branch that we could publish as 0.5.2 which uses the is-terminal crate instead as a stop-gap. That being said it's also quite safe to stay with 0.5.1 since the "vulnerability" that prompted me to replace this is pretty esoteric.

This comment has been minimized.

Copy link
@martin-g

martin-g Jul 31, 2023

Yeah, I will wait some months until my library can raise the MSRV to 1.70.0. At the moment it is at 1.65.0.


keywords = [
"backtrace",
Expand Down

0 comments on commit f06593c

Please sign in to comment.