Skip to content

Commit

Permalink
Merge pull request #330 from jonhoo/0-11-21
Browse files Browse the repository at this point in the history
Release 0.11.21
  • Loading branch information
jonhoo authored Aug 3, 2024
2 parents 0c0213b + 59c7138 commit a828b7e
Show file tree
Hide file tree
Showing 4 changed files with 85 additions and 59 deletions.
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Removed

## [0.11.21] - 2024-08-03
### Added

- Support for combined stack + ustack DTrace collapse. [#328](https://github.com/jonhoo/inferno/pull/328)

### Changed

- Trim executable name when getting function color. [#329](https://github.com/jonhoo/inferno/pull/329)

## [0.11.20] - 2024-07-14
### Changed

Expand Down Expand Up @@ -306,7 +315,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Moved to `IndexMap` and FNV hashing ([#127](https://github.com/jonhoo/inferno/pull/127))
- Moved CI to Azure DevOps Pipelines

[Unreleased]: https://github.com/jonhoo/inferno/compare/v0.11.20...HEAD
[Unreleased]: https://github.com/jonhoo/inferno/compare/v0.11.21...HEAD
[0.11.21]: https://github.com/jonhoo/inferno/compare/v0.11.20...v0.11.21
[0.11.20]: https://github.com/jonhoo/inferno/compare/v0.11.19...v0.11.20
[0.11.19]: https://github.com/jonhoo/inferno/compare/v0.11.18...v0.11.19
[0.11.18]: https://github.com/jonhoo/inferno/compare/v0.11.17...v0.11.18
Expand Down
126 changes: 73 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inferno"
version = "0.11.20"
version = "0.11.21"
edition = "2021"
authors = ["Jon Gjengset <jon@thesquareplanet.com>"]
rust-version = "1.71.0"
Expand Down
4 changes: 0 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,12 +145,8 @@
#![cfg_attr(doc, allow(rustdoc::missing_doc_code_examples))]
#![deny(missing_docs)]
#![warn(unreachable_pub)]
#![cfg_attr(all(test, feature = "nightly"), feature(test))]
#![allow(clippy::disallowed_names)]

#[cfg(all(test, feature = "nightly"))]
extern crate test;

/// Stack collapsing for various input formats.
///
/// See the [crate-level documentation] for details.
Expand Down

0 comments on commit a828b7e

Please sign in to comment.