Skip to content

Commit

Permalink
chore: lower MSRV to 1.75
Browse files Browse the repository at this point in the history
  • Loading branch information
andylokandy committed Aug 14, 2024
1 parent 788a458 commit 98540ca
Show file tree
Hide file tree
Showing 10 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fail-fast: false
matrix:
os: [ windows-latest, macos-latest, ubuntu-latest ]
rust: [ "1.80.1", stable, nightly ]
rust: [ "1.75", stable, nightly ]
env:
RUST_BACKTRACE: 1
steps:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## v0.7.1

- Lower MSRV to 1.75.

## v0.7.0

- Upgrade dependencies including opentelemtry and more.
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ resolver = "2"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/fast/fastrace"
rust-version = "1.80.1"
rust-version = "1.75"

[workspace.dependencies]
# workspace dependencies
fastrace = { version = "0.7.0", path = "fastrace" }
fastrace-macro = { version = "0.7.0", path = "fastrace-macro" }
fastrace = { version = "0.7.1", path = "fastrace" }
fastrace-macro = { version = "0.7.1", path = "fastrace-macro" }

# workspace leaves
fastrace-datadog = { path = "fastrace-datadog" }
Expand Down
2 changes: 1 addition & 1 deletion fastrace-datadog/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastrace-datadog"
version = "0.7.0"
version = "0.7.1"

categories = ["development-tools::debugging"]
description = "Datadog reporter for fastrace"
Expand Down
2 changes: 1 addition & 1 deletion fastrace-futures/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastrace-futures"
version = "0.7.0"
version = "0.7.1"

categories = ["development-tools::debugging"]
description = "Utilities for tracing `futures` with fastrace"
Expand Down
2 changes: 1 addition & 1 deletion fastrace-jaeger/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastrace-jaeger"
version = "0.7.0"
version = "0.7.1"

categories = ["development-tools::debugging"]
description = "Jaeger reporter for fastrace"
Expand Down
2 changes: 1 addition & 1 deletion fastrace-macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastrace-macro"
version = "0.7.0"
version = "0.7.1"

categories = ["development-tools::debugging"]
description = "Attribute procedural macro for fastrace"
Expand Down
2 changes: 1 addition & 1 deletion fastrace-opentelemetry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastrace-opentelemetry"
version = "0.7.0"
version = "0.7.1"

categories = ["development-tools::debugging"]
description = "Opentelemetry reporter for fastrace"
Expand Down
2 changes: 1 addition & 1 deletion fastrace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "fastrace"
version = "0.7.0"
version = "0.7.1"

categories = ["development-tools::debugging"]
description = "A high-performance timeline tracing library for Rust"
Expand Down
2 changes: 1 addition & 1 deletion fastrace/src/macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ macro_rules! func_path {
}

/// Get the full path of the function where the macro is invoked. Returns a `&'static str`.
#[deprecated(since = "0.7.0", note = "Please use `fastrace::func_path!()` instead")]
#[deprecated(since = "0.7.1", note = "Please use `fastrace::func_path!()` instead")]
#[macro_export]
macro_rules! full_name {
() => {{
Expand Down

0 comments on commit 98540ca

Please sign in to comment.