-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #210 from JohnTitor/changelog
Add changelog
- Loading branch information
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Changelog | ||
|
||
## Unreleased | ||
|
||
* Our MSRV is now 1.40.0 (because of dependencies) | ||
* `rand` dependency has been upgraded to 0.8 | ||
* Fix some crates' build on `no_std` | ||
* Restore the `unicase_support` feature for `phf_macros` | ||
* Allow using the owned `String` type for `phf` dynamic code generation | ||
|
||
## 0.8.0 | ||
|
||
* `phf_macros` now works on stable. | ||
* :tada: Fixed asymptotic slowdowns when constructing maps over very large datasets (+1M keys) | ||
* (**breaking change**) The `core` features of `phf` and `phf_shared` have been changed to `std` default-features. | ||
* (**breaking change**) The types in `phf_codegen` can be used with formatting macros via their `Display` impls and the `build()` methods no longer take `&mut Write`. | ||
* Support has been added for using 128-bit integers as keys. | ||
* (**breaking change**) The `OrderedMap` and `OrderedSet` types and the `phf_builder` crate have been removed due to lack of use. | ||
* Byte strings now work correctly as keys. | ||
* `unicase` dependency has been upgraded to 2.4.0 |