Skip to content

Commit 250040a

Browse files
committed
Auto merge of #521 - Amanieu:release-0.14.5, r=Amanieu
Release 0.14.5 This temporarily reverts (#495) since that is a breaking change that will be included in v0.15.0.
2 parents 97c2140 + 232df8c commit 250040a

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

.github/workflows/rust.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ jobs:
6060
channel: [1.74.0, nightly]
6161
include:
6262
- os: macos-latest
63-
target: x86_64-apple-darwin
63+
target: aarch64-apple-darwin
6464
channel: nightly
6565
- os: windows-latest
6666
target: x86_64-pc-windows-msvc
6767
channel: nightly
6868
- os: macos-latest
69-
target: x86_64-apple-darwin
69+
target: aarch64-apple-darwin
7070
channel: 1.74.0
7171
- os: windows-latest
7272
target: x86_64-pc-windows-msvc

CHANGELOG.md

+8-3
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
77

88
## [Unreleased]
99

10-
## [v0.14.4] - 2024-03-19
11-
1210
### Changed
1311

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

14+
## [v0.14.5] - 2024-04-28
15+
1616
### Fixed
1717

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

20+
## ~~[v0.14.4] - 2024-03-19~~
21+
22+
This release was _yanked_ due to a breaking change.
23+
2024
## [v0.14.3] - 2023-11-26
2125

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

482486
- Initial release
483487

484-
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.14.4...HEAD
488+
[Unreleased]: https://github.com/rust-lang/hashbrown/compare/v0.14.5...HEAD
489+
[v0.14.5]: https://github.com/rust-lang/hashbrown/compare/v0.14.4...v0.14.5
485490
[v0.14.4]: https://github.com/rust-lang/hashbrown/compare/v0.14.3...v0.14.4
486491
[v0.14.3]: https://github.com/rust-lang/hashbrown/compare/v0.14.2...v0.14.3
487492
[v0.14.2]: https://github.com/rust-lang/hashbrown/compare/v0.14.1...v0.14.2

ci/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ set -ex
55
: "${TARGET?The TARGET environment variable must be set.}"
66

77
case "${TARGET}" in
8-
x86_64-unknown-linux-gnu|x86_64-apple-darwin|x86_64-pc-windows-msvc)
8+
x86_64-unknown-linux-gnu|x86_64-apple-darwin|aarch64-apple-darwin|x86_64-pc-windows-msvc)
99
CROSS=0
1010
NO_STD=0
1111
;;

0 commit comments

Comments
 (0)