diff --git a/CHANGELOG.md b/CHANGELOG.md index efe0a70..0a495c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ +# Unreleased + # 0.17.0 -* (breaking) removed `Toast::font(font: FontId)`, this can now be done by using `egui::widget_text::RichText` and `RichText::font` -* Added support for `egui::widget_text::WidgetText` in Toasts, this allows for more customization of the text in the toast. +* (breaking) removed `Toast::font(font: FontId)`, this can now be done by using `egui::widget_text::RichText` and `RichText::font`. [#34] +* Added support for `egui::widget_text::WidgetText` in Toasts, this allows for more customization of the text in the toast. [#34] + +[#34]: https://github.com/ItsEthra/egui-notify/pull/34 # 0.16.0 diff --git a/Cargo.toml b/Cargo.toml index c21b946..1861728 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "0.17.0" edition = "2021" license = "MIT" repository = "https://github.com/ItsEthra/egui-notify" -description = "Simple notifications library for EGUI" +description = "Simple notifications library for egui" authors = ["ItsEthra"] readme = "README.md" diff --git a/README.md b/README.md index 892e5ee..0eb9408 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ cargo add egui-notify ```toml [dependencies] -egui-notify = "0.16.0" +egui-notify = "0.17.0" ``` ## Difference to [`egui-toast`](https://github.com/urholaukkarinen/egui-toast)