From 534eb035cc429421e582be2440ffdd5b579db6b0 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Tue, 4 May 2021 19:08:30 -0700 Subject: [PATCH] Release 0.10.4 --- CHANGELOG.md | 9 ++++++++- Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0cb67437..059dd42f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Removed +## [0.10.4] - 2021-05-04 +### Changed + - Use number of samples instead of fractions for width/x calculations. [#210](https://github.com/jonhoo/inferno/pull/210) + - Bumped `pretty_assertions` to 0.7 + - Bumped `rand` to 0.8 + ## [0.10.3] - 2021-01-08 ### Added - Support jit annotations in collapse-perf for runtimes using the jitdump format. [#202](https://github.com/jonhoo/inferno/pull/202) @@ -144,7 +150,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.10.3...HEAD +[Unreleased]: https://github.com/jonhoo/inferno/compare/v0.10.4...HEAD +[0.10.4]: https://github.com/jonhoo/inferno/compare/v0.10.3...v0.10.4 [0.10.3]: https://github.com/jonhoo/inferno/compare/v0.10.2...v0.10.3 [0.10.2]: https://github.com/jonhoo/inferno/compare/v0.10.1...v0.10.2 [0.10.1]: https://github.com/jonhoo/inferno/compare/v0.10.0...v0.10.1 diff --git a/Cargo.toml b/Cargo.toml index 5b64f38d..9a7a31b8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inferno" -version = "0.10.3" +version = "0.10.4" edition = "2018" authors = ["Jon Gjengset "]