From 7766eccc4ab7741e0e5bf724362b50db98011bae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Wed, 3 Dec 2025 19:50:18 +0100 Subject: [PATCH] Update `CHANGELOG` --- CHANGELOG.md | 4 +++- examples/changelog/src/changelog.rs | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb90f293..c69296a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -117,6 +117,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `CornerPreference` window setting for Windows. [#3128](https://github.com/iced-rs/iced/pull/3128) - `move_to` method for `Editor` API. [#3125](https://github.com/iced-rs/iced/pull/3125) - `Background` and `padding_ratio` support for `toggler` styling. [#3129](https://github.com/iced-rs/iced/pull/3129) +- More syntaxes for `iced_highlighter`. [#2822](https://github.com/iced-rs/iced/pull/2822) ### Changed - Replace `Rc` with `Arc` for `markdown` caching. [#2599](https://github.com/iced-rs/iced/pull/2599) @@ -280,7 +281,6 @@ Many thanks to... - @alex-ds13 - @B0ney - @bbb651 -- @EmmanuelDodoo - @JL710 - @kenz-gelsoft - @mfreeborn @@ -289,7 +289,9 @@ Many thanks to... - @13r0ck - @airstrike - @bungoboingo +- @EmmanuelDodoo - @karolisr +- @Redhawk18 - @Remmirad - @semiversus - @Ultrasquid9 diff --git a/examples/changelog/src/changelog.rs b/examples/changelog/src/changelog.rs index c9ff14ce..c40faf2d 100644 --- a/examples/changelog/src/changelog.rs +++ b/examples/changelog/src/changelog.rs @@ -170,7 +170,7 @@ impl Changelog { target.push(item); - *self.contributions.entry(entry.author.clone()).or_default() += 1; + let _ = self.contributions.entry(entry.author.clone()).or_default(); if entry.author != "hecrj" && !self.authors.contains(&entry.author) { self.authors.push(entry.author);