Skip to content

Commit

Permalink
Auto merge of rust-lang#521 - Amanieu:release-0.14.5, r=Amanieu
Browse files Browse the repository at this point in the history
Release 0.14.5

This temporarily reverts (rust-lang#495) since that is a breaking change that will be included in v0.15.0.
  • Loading branch information
bors committed Apr 28, 2024
2 parents 97c2140 + 232df8c commit 250040a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ jobs:
channel: [1.74.0, nightly]
include:
- os: macos-latest
target: x86_64-apple-darwin
target: aarch64-apple-darwin
channel: nightly
- os: windows-latest
target: x86_64-pc-windows-msvc
channel: nightly
- os: macos-latest
target: x86_64-apple-darwin
target: aarch64-apple-darwin
channel: 1.74.0
- os: windows-latest
target: x86_64-pc-windows-msvc
Expand Down
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,16 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [v0.14.4] - 2024-03-19

### Changed

- Changed `hash_set::{Entry, VacantEntry}::insert` to return `OccupiedEntry`. (#495)

## [v0.14.5] - 2024-04-28

### Fixed

- Fixed index calculation in panic guard of `clone_from_impl`. (#511)

## ~~[v0.14.4] - 2024-03-19~~

This release was _yanked_ due to a breaking change.

## [v0.14.3] - 2023-11-26

### Added
Expand Down Expand Up @@ -481,7 +485,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat

- Initial release

[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.14.4...HEAD
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.14.5...HEAD
[v0.14.5]: https://github.com/rust-lang/hashbrown/compare/v0.14.4...v0.14.5
[v0.14.4]: https://github.com/rust-lang/hashbrown/compare/v0.14.3...v0.14.4
[v0.14.3]: https://github.com/rust-lang/hashbrown/compare/v0.14.2...v0.14.3
[v0.14.2]: https://github.com/rust-lang/hashbrown/compare/v0.14.1...v0.14.2
Expand Down
2 changes: 1 addition & 1 deletion ci/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ set -ex
: "${TARGET?The TARGET environment variable must be set.}"

case "${TARGET}" in
x86_64-unknown-linux-gnu|x86_64-apple-darwin|x86_64-pc-windows-msvc)
x86_64-unknown-linux-gnu|x86_64-apple-darwin|aarch64-apple-darwin|x86_64-pc-windows-msvc)
CROSS=0
NO_STD=0
;;
Expand Down

0 comments on commit 250040a

Please sign in to comment.