Skip to content

Commit

Permalink
Upgrade derive_more crate from 1.0.0-beta.6 to 1.0.0-beta.7 version (
Browse files Browse the repository at this point in the history
…#11)

- bump up MSRV to 1.75

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Kai Ren <[email protected]>
  • Loading branch information
dependabot[bot] and tyranron authored Aug 2, 2024
1 parent 01b65d7 commit 71b4947
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
strategy:
fail-fast: false
matrix:
msrv: ["1.72.0"]
msrv: ["1.75.0"]
os: ["ubuntu", "macOS", "windows"]
runs-on: ${{ matrix.os }}-latest
steps:
Expand Down
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,16 @@ All user visible changes to this project will be documented in this file. This p



## [0.4.0] · 2023-??-?? (unreleased)
## [0.4.0] · 2024-??-?? (unreleased)
[0.4.0]: /../../tree/v0.4.0

[Diff](/../../compare/v0.3.0...v0.4.0)

### BC Breaks

- Set MSRV to [1.72.0](https://blog.rust-lang.org/2023/08/24/Rust-1.72.0.html).
- Set [MSRV] to [1.75.0](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html). ([#11])

[#11]: /../../pull/11



Expand All @@ -27,7 +29,7 @@ All user visible changes to this project will be documented in this file. This p

- Renamed `Traced::from_parts()` to `Traced::compose()`.
- Renamed `Traced::into_parts()` to `Traced::split()`.
- Set MSRV to [1.56.0](https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html).
- Set [MSRV] to [1.56.0](https://blog.rust-lang.org/2021/10/21/Rust-1.56.0.html).

### Added

Expand Down Expand Up @@ -98,4 +100,5 @@ Published initial implementation, which provides:



[MSRV]: https://doc.rust-lang.org/cargo/reference/manifest.html#the-rust-version-field
[Semantic Versioning 2.0.0]: https://semver.org
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "tracerr"
version = "0.4.0-dev"
edition = "2021"
rust-version = "1.72"
rust-version = "1.75"
description = "Custom compile-time captured error tracing."
authors = ["Instrumentisto Team <[email protected]>"]
license = "BlueOak-1.0.0"
Expand All @@ -15,5 +15,5 @@ categories = ["rust-patterns"]
include = ["/src/", "/CHANGELOG.md", "/LICENSE.md", "/README.md"]

[dependencies]
derive_more = { version = "=1.0.0-beta.6", features = ["as_ref", "display"] }
derive_more = { version = "=1.0.0-beta.7", features = ["as_ref", "display"] }
sealed = "0.5"
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ tracerr
=======

[![crates.io](https://img.shields.io/crates/v/tracerr.svg "crates.io")](https://crates.io/crates/tracerr)
[![Rust 1.72+](https://img.shields.io/badge/rustc-1.72+-lightgray.svg "Rust 1.72+")](https://blog.rust-lang.org/2023/08/24/Rust-1.72.0.html)
[![Rust 1.75+](https://img.shields.io/badge/rustc-1.75+-lightgray.svg "Rust 1.75+")](https://blog.rust-lang.org/2023/12/28/Rust-1.75.0.html)
[![Unsafe Forbidden](https://img.shields.io/badge/unsafe-forbidden-success.svg)](https://github.com/rust-secure-code/safety-dance)
[![CI](https://github.com/instrumentisto/tracerr-rs/workflows/CI/badge.svg?branch=main "CI")](https://github.com/instrumentisto/tracerr-rs/actions?query=workflow%3ACI+branch%3Amain)
[![Rust docs](https://docs.rs/tracerr/badge.svg "Rust docs")](https://docs.rs/tracerr)
Expand Down

0 comments on commit 71b4947

Please sign in to comment.