From 43ed7801cdea55af186c054fe8280c6ca426bff3 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Fri, 8 Jan 2021 17:30:15 -0800 Subject: [PATCH] Release 0.10.3 --- CHANGELOG.md | 12 +++++++++--- Cargo.toml | 2 +- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4d73619e..0cb67437 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +### Added + +### Changed + +### Removed + +## [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) @@ -12,8 +19,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Decreased default minimum width from 0.1% to 0.01%. [#204](https://github.com/jonhoo/inferno/pull/204) - Detect if STDOUT is a TTY and if it's not, use a `BufWriter` to avoid line buffering. [#206](https://github.com/jonhoo/inferno/pull/206) -### Removed - ## [0.10.2] - 2020-11-30 ### Changed - Support for invalid utf8 data in collapse. [#196](https://github.com/jonhoo/inferno/pull/196) @@ -139,7 +144,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.2...HEAD +[Unreleased]: https://github.com/jonhoo/inferno/compare/v0.10.3...HEAD +[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 [0.10.0]: https://github.com/jonhoo/inferno/compare/v0.9.9...v0.10.0 diff --git a/Cargo.toml b/Cargo.toml index 34cfb9d1..097fe7da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inferno" -version = "0.10.2" +version = "0.10.3" edition = "2018" authors = ["Jon Gjengset "]