Skip to content

Commit

Permalink
fix pointless ahash MSRV bump
Browse files Browse the repository at this point in the history
  • Loading branch information
tobz committed Feb 11, 2024
1 parent 6eef32a commit 9a5d9dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions metrics-util/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased] - ReleaseDate

### Fixed

- Lock down the version of `ahash` to avoid unnecessary MSRV bumping.

## [0.16.1] - 2024-02-11

### Changed
Expand Down
2 changes: 1 addition & 1 deletion metrics-util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ sketches-ddsketch = { version = "0.2", default-features = false, optional = true
radix_trie = { version = "0.2", default-features = false, optional = true }
ordered-float = { version = "4.2", default-features = false, optional = true }
num_cpus = { version = "1", default-features = false, optional = true }
ahash = { version = "0.8", default-features = false, optional = true }
ahash = { version = ">= 0.8, <= 0.8.7", default-features = false, optional = true }
hashbrown = { version = "0.14", default-features = false, optional = true, features = ["ahash"] }

[dev-dependencies]
Expand Down

0 comments on commit 9a5d9dc

Please sign in to comment.