From 28dc6f3fc53aabf09b13b27e9b8bc10094ddf552 Mon Sep 17 00:00:00 2001 From: Andy Lok Date: Wed, 14 Aug 2024 23:26:42 +0800 Subject: [PATCH] build: set MSRV to 1.75 and update fastrace (#53) --- .github/workflows/ci.yml | 2 +- Cargo.toml | 6 +++--- README.md | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de6f95b..5ce8192 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,7 @@ jobs: matrix: # Ensure both MSRV and stable work rust-version: - - "1.71.0" + - "1.75.0" - stable steps: - uses: actions/checkout@v4 diff --git a/Cargo.toml b/Cargo.toml index b33512f..7718010 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,8 +21,8 @@ homepage = "https://github.com/fast/logforth" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/fast/logforth" -rust-version = "1.71.0" -version = "0.10.0" +rust-version = "1.75.0" +version = "0.11.0" categories = ["development-tools::debugging"] keywords = ["logging", "log", "opentelemetry", "fastrace"] @@ -67,7 +67,7 @@ version = "0.12" ## Fastrace dependencies [dependencies.fastrace] optional = true -version = "0.6" +version = "0.7.1" ## Opentelemetry dependencies [dependencies.opentelemetry] diff --git a/README.md b/README.md index 01710ed..9132200 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![Crates.io][crates-badge]][crates-url] [![Documentation][docs-badge]][docs-url] -[![MSRV 1.71][msrv-badge]](https://www.whatrustisit.com) +[![MSRV 1.75][msrv-badge]](https://www.whatrustisit.com) [![Apache 2.0 licensed][license-badge]][license-url] [![Build Status][actions-badge]][actions-url] @@ -64,9 +64,9 @@ Read more demos under the [examples](examples) directory. Read the online documents at https://docs.rs/logforth. -## Supported Rust Versions (MSRV 1.71) +## Supported Rust Versions (MSRV 1.75) -Logforth is built against the latest stable release. The minimum supported version is 1.71. The current Logforth version is not guaranteed to build on Rust versions earlier than the minimum supported version. +Logforth is built against the latest stable release. The minimum supported version is 1.75. The current Logforth version is not guaranteed to build on Rust versions earlier than the minimum supported version. ## When to release a 1.0 version