File tree 3 files changed +11
-6
lines changed
3 files changed +11
-6
lines changed Original file line number Diff line number Diff line change @@ -60,13 +60,13 @@ jobs:
60
60
channel : [1.74.0, nightly]
61
61
include :
62
62
- os : macos-latest
63
- target : x86_64 -apple-darwin
63
+ target : aarch64 -apple-darwin
64
64
channel : nightly
65
65
- os : windows-latest
66
66
target : x86_64-pc-windows-msvc
67
67
channel : nightly
68
68
- os : macos-latest
69
- target : x86_64 -apple-darwin
69
+ target : aarch64 -apple-darwin
70
70
channel : 1.74.0
71
71
- os : windows-latest
72
72
target : x86_64-pc-windows-msvc
Original file line number Diff line number Diff line change @@ -7,16 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
- ## [ v0.14.4] - 2024-03-19
11
-
12
10
### Changed
13
11
14
12
- Changed ` hash_set::{Entry, VacantEntry}::insert ` to return ` OccupiedEntry ` . (#495 )
15
13
14
+ ## [ v0.14.5] - 2024-04-28
15
+
16
16
### Fixed
17
17
18
18
- Fixed index calculation in panic guard of ` clone_from_impl ` . (#511 )
19
19
20
+ ## ~~ [ v0.14.4] - 2024-03-19~~
21
+
22
+ This release was _ yanked_ due to a breaking change.
23
+
20
24
## [ v0.14.3] - 2023-11-26
21
25
22
26
### Added
@@ -481,7 +485,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
481
485
482
486
- Initial release
483
487
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
485
490
[ v0.14.4 ] : https://github.com/rust-lang/hashbrown/compare/v0.14.3...v0.14.4
486
491
[ v0.14.3 ] : https://github.com/rust-lang/hashbrown/compare/v0.14.2...v0.14.3
487
492
[ v0.14.2 ] : https://github.com/rust-lang/hashbrown/compare/v0.14.1...v0.14.2
Original file line number Diff line number Diff line change 5
5
: " ${TARGET?The TARGET environment variable must be set.} "
6
6
7
7
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)
9
9
CROSS=0
10
10
NO_STD=0
11
11
;;
You can’t perform that action at this time.
0 commit comments