diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 448ba9a3..8ce471fb 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: fail-fast: false matrix: runs-on: [ubuntu-latest, macos-latest] - rust: [1.64.0, stable] + rust: [1.65.0, stable] profile: [dev, release] args: ["--workspace"] include: diff --git a/CHANGELOG.md b/CHANGELOG.md index f03e0559..6677d096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ Unreleased - Made `inspect::SymInfo::file_offset` member optional - Added support for symbolizing Gsym addresses to `blazecli` - Fixed bogus inlined function reporting for Gsym +- Bumped minimum supported Rust version to `1.65` 0.2.0-alpha.7 diff --git a/Cargo.toml b/Cargo.toml index dc5cd810..af456db4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ name = "blazesym" description = "blazesym is a library for address symbolization and related tasks." version = "0.2.0-alpha.7" edition = "2021" -rust-version = "1.64" +rust-version = "1.65" authors = ["Daniel Müller ", "Kui-Feng "] license-file = "LICENSE" repository = "https://github.com/libbpf/blazesym" diff --git a/README.md b/README.md index 33a81b91..e835729e 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ [![coverage](https://codecov.io/gh/libbpf/blazesym/branch/main/graph/badge.svg)](https://codecov.io/gh/libbpf/blazesym) [![crates.io](https://img.shields.io/crates/v/blazesym.svg)](https://crates.io/crates/blazesym) [![Docs](https://docs.rs/blazesym/badge.svg)](https://docs.rs/blazesym) -[![rustc](https://img.shields.io/badge/rustc-1.64+-blue.svg)](https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html) +[![rustc](https://img.shields.io/badge/rustc-1.65+-blue.svg)](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) # blazesym diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 6e54a959..9e92e5a0 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -2,7 +2,7 @@ name = "blazecli" version = "0.0.0" edition = "2021" -rust-version = "1.64" +rust-version = "1.65" default-run = "blazecli" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/cli/README.md b/cli/README.md index 854c5c4f..26d83d07 100644 --- a/cli/README.md +++ b/cli/README.md @@ -1,5 +1,5 @@ [![pipeline](https://github.com/libbpf/blazesym/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/libbpf/blazesym/actions/workflows/test.yml) -[![rustc](https://img.shields.io/badge/rustc-1.64+-blue.svg)](https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html) +[![rustc](https://img.shields.io/badge/rustc-1.65+-blue.svg)](https://blog.rust-lang.org/2022/11/03/Rust-1.65.0.html) blazecli ========