@@ -7,9 +7,42 @@ and this project adheres to [Semantic Versioning](https://semver.org/).
7
7
8
8
## [ Unreleased]
9
9
10
+ ## [ v0.15.0] - 2024-09-??
11
+
12
+ This update contains breaking changes that remove the ` raw ` API with the hope of
13
+ centralising on the ` HashTable ` API in the future. You can follow the discussion
14
+ and progress in #545 to discuss features you think should be added to this API
15
+ that were previously only possible on the ` raw ` API.
16
+
17
+ ### Added
18
+
19
+ - Added ` borsh ` feature with ` BorshSerialize ` and ` BorshDeserialize ` impls. (#525 )
20
+ - Added ` Assign ` impls for ` HashSet ` operators. (#529 )
21
+ - Added ` Default ` impls for iterator types. (#542 )
22
+ - Added ` RawTable::iter_hash ` and ` HashTable::iter_hash{,_mut} ` methods. (#549 )
23
+ - Added ` Hash{Table,Map,Set}::allocation_size ` methods. (#553 )
24
+
10
25
### Changed
11
26
12
27
- Changed ` hash_set::{Entry, VacantEntry}::insert ` to return ` OccupiedEntry ` . (#495 )
28
+ - Improved` hash_set::Difference::size_hint ` lower-bound. (#530 )
29
+ - Improved ` HashSet::is_disjoint ` performance. (#531 )
30
+ - ` equivalent ` feature is now enabled by default. (#532 )
31
+ - ` HashSet ` operators now return a set with the same allocator. (#529 )
32
+ - ` ahash ` feature has been renamed to ` default-hasher ` . (#533 )
33
+ - Entry API has been reworked and several methods have been renamed. (#535 )
34
+ - ` Hash{Map,Set}::insert_unique_unchecked ` is now unsafe. (#556 )
35
+
36
+ ### Fixed
37
+
38
+ * Fixed typos, stray backticks in docs. (#558 , #560 )
39
+
40
+ ### Removed
41
+
42
+ - Raw entry API is now under ` raw-entry ` feature, to be eventually removed. (#534 , #555 )
43
+ - Raw table API has been made private and the ` raw ` feature is removed;
44
+ in the future, all code should be using the ` HashTable ` API instead. (#531 , #546 )
45
+ - ` rykv ` feature was removed; this is now provided by the ` rykv ` crate instead. (#554 )
13
46
14
47
## [ v0.14.5] - 2024-04-28
15
48
@@ -485,7 +518,8 @@ This release was _yanked_ due to a breaking change for users of `no-default-feat
485
518
486
519
- Initial release
487
520
488
- [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.14.5...HEAD
521
+ [ Unreleased ] : https://github.com/rust-lang/hashbrown/compare/v0.15.0...HEAD
522
+ [ v0.15.0 ] : https://github.com/rust-lang/hashbrown/compare/v0.14.5...v0.15.0
489
523
[ v0.14.5 ] : https://github.com/rust-lang/hashbrown/compare/v0.14.4...v0.14.5
490
524
[ v0.14.4 ] : https://github.com/rust-lang/hashbrown/compare/v0.14.3...v0.14.4
491
525
[ v0.14.3 ] : https://github.com/rust-lang/hashbrown/compare/v0.14.2...v0.14.3
0 commit comments