Skip to content

Commit

Permalink
Merge pull request #200 from jonhoo/bumps
Browse files Browse the repository at this point in the history
Prepare 0.10.2 release
  • Loading branch information
jonhoo authored Dec 1, 2020
2 parents 5717ae3 + a2ae17a commit f2f1e9a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 9 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

### Changed
- Support for invalid utf8 data in collapse. [#196](https://github.com/jonhoo/inferno/pull/196)

### Removed

## [0.10.2] - 2020-11-30
### Changed
- Support for invalid utf8 data in collapse. [#196](https://github.com/jonhoo/inferno/pull/196)
- Bumped `ahash` to 0.6
- Caused a bump of minimum supported Rust version to 1.43
- Bumped `crossbeam-channel` to 0.5
- Bumped `crossbeam-utils` to 0.8
- Bumped `env-logger` to 0.8
- Bumped `quick-xml` to 0.20

## [0.10.1] - 2020-10-05
### Added
- Support kernel annotations for versioned vmlinux and kernel modules in collapse-perf. [#182](https://github.com/jonhoo/inferno/pull/182)
Expand Down Expand Up @@ -127,7 +136,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.1...HEAD
[Unreleased]: https://github.com/jonhoo/inferno/compare/v0.10.2...HEAD
[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
[0.9.9]: https://github.com/jonhoo/inferno/compare/v0.9.7...v0.9.9
Expand Down
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "inferno"
version = "0.10.1"
version = "0.10.2"
edition = "2018"
authors = ["Jon Gjengset <[email protected]>"]

Expand All @@ -27,18 +27,18 @@ multithreaded = ["dashmap", "crossbeam-utils", "crossbeam-channel", "num_cpus"]
nameattr = ["indexmap"]

[dependencies]
ahash = "0.4"
crossbeam-utils = { version = "0.7", optional = true }
crossbeam-channel = { version = "0.4", optional = true }
ahash = "0.6"
crossbeam-utils = { version = "0.8", optional = true }
crossbeam-channel = { version = "0.5", optional = true }
dashmap = { version = "3", optional = true }
env_logger = { version = "0.7", default-features = false, optional = true }
env_logger = { version = "0.8", default-features = false, optional = true }
indexmap = { version = "1.0", optional = true }
itoa = "0.4.3"
lazy_static = "1.3.0"
log = "0.4"
num_cpus = { version = "1.10", optional = true }
num-format = { version = "0.4", default-features = false }
quick-xml = { version = "0.19", default-features = false }
quick-xml = { version = "0.20", default-features = false }
rgb = "0.8.13"
str_stack = "0.1"
structopt = { version = "0.3", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ jobs:
- template: default.yml@templates
parameters:
codecov_token: $(CODECOV_TOKEN_SECRET)
minrust: 1.42.0
minrust: 1.43.0
env:
RUST_BACKTRACE: 1
setup:
Expand Down

0 comments on commit f2f1e9a

Please sign in to comment.