Skip to content

Commit

Permalink
Bump up MSRV to 1.75
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Aug 2, 2024
1 parent f192152 commit e8d8cd5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 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
2 changes: 1 addition & 1 deletion 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 Down
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 e8d8cd5

Please sign in to comment.