Skip to content

Commit 60ec84c

Browse files
committed
Update RELEASES, fix MSRV
1 parent c125053 commit 60ec84c

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name = "emojis"
66
version = "0.7.2"
77
authors = ["Ross MacArthur <[email protected]>"]
88
edition = "2021"
9-
rust-version = "1.65"
9+
rust-version = "1.66"
1010
description = "✨ Lookup emoji in *O(1)* time, access metadata and GitHub shortcodes, iterate over all emoji, and more!"
1111
readme = "README.md"
1212
repository = "https://github.com/rossmacarthur/emojis"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ These operations take *Ο(1)* time.
4545

4646
## MSRV
4747

48-
Currently the minimum supported Rust version is 1.61 due to the dependency
48+
Currently the minimum supported Rust version is 1.66 due to the dependency
4949
on `phf`. The policy of this crate is to only increase the MSRV in a
5050
breaking release.
5151

RELEASES.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,21 @@
11
# 📝 Release notes
22

3+
## 0.8.0
4+
5+
*Unreleased*
6+
7+
- [Upgrade to `phf v0.13`][c125053c]. This raises the minimum supported Rust
8+
version to 1.66.0.
9+
- [Import Unicode 17.0 emojis][298370be]
10+
- [Fix `with_skin_tone` for emojis with only 5 variants][f53cf122]
11+
12+
[c125053c]: https://github.com/rossmacarthur/emojis/commit/c125053cde13babc0ae301acdf66c7b7ca2191a7
13+
[298370be]: https://github.com/rossmacarthur/emojis/commit/298370be15b86b451f9620e9f49e75603da37da5
14+
[f53cf122]: https://github.com/rossmacarthur/emojis/commit/f53cf1221ad0bcb93c3925de80962a7a1dba1bad
15+
316
## 0.7.2
417

5-
*August 12, 2025*
18+
*August 12th, 2025*
619

720
- [Implement `PartialOrd` and `Ord` for `Emoji`][e83473d3]. This allows emojis
821
to be compared and sorted. Note that the order is based on the string

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
//!
3939
//! # MSRV
4040
//!
41-
//! Currently the minimum supported Rust version is 1.61 due to the dependency
41+
//! Currently the minimum supported Rust version is 1.66 due to the dependency
4242
//! on [`phf`]. The policy of this crate is to only increase the MSRV in a
4343
//! breaking release.
4444
//!

0 commit comments

Comments
 (0)