From c4e8b2416d747551e0fa5343f0ed6bdc6d8e7e37 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Tue, 26 Mar 2024 18:51:04 +0100 Subject: [PATCH] Update to egui 0.27 (#37) * Update to egui 0.27 * update pr link in changelog * Fix typos --- Backends.md | 2 +- CHANGELOG.md | 3 ++- Cargo.toml | 6 +++--- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/Backends.md b/Backends.md index db17568..66722dd 100644 --- a/Backends.md +++ b/Backends.md @@ -28,6 +28,6 @@ Currently both support the same feature set | Type | pulldown_cmark | comrak | |---------|----------------|--------| | Footers | Placed when they appear | Placed at the end | -| Spec incompatibilies | Blocks such as images can be rendered inside tables. This is against the spec | Disallowed | +| Spec incompatibilities | Blocks such as images can be rendered inside tables. This is against the spec | Disallowed | diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c14eef..50e8ffe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ ### Changed +- Update to egui 0.27 ([#37](https://github.com/lampsitter/egui_commonmark/pull/37) by [@emilk](https://github.com/emilk)) - `CommonMarkViewer::show` returns `InnerResponse<()>` ([#36](https://github.com/lampsitter/egui_commonmark/pull/36) by [@ElhamAryanpur](https://github.com/ElhamAryanpur)) @@ -29,7 +30,7 @@ - Prettier blockquotes - Before two simple horizontal lines were rendered. Now it's a single horizonal + Before two simple horizontal lines were rendered. Now it's a single horizontal line in front of the elements. - Upgraded to pulldown-cmark 0.10 diff --git a/Cargo.toml b/Cargo.toml index 6558cc4..ffc7bf7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,8 +14,8 @@ include = ["**/*.rs", "LICENSE-MIT", "LICENSE-APACHE", "Cargo.toml"] rust-version = "1.72" # Follow egui [dependencies] -egui_extras = "0.26" -egui.version = "0.26" +egui_extras = "0.27" +egui.version = "0.27" syntect = { version = "5.0.0", optional = true, default-features = false, features = [ "default-fancy", @@ -45,7 +45,7 @@ svg = ["egui_extras/svg"] fetch = ["egui_extras/http"] [dev-dependencies] -eframe = { version = "0.26", default-features = false, features = ["default_fonts", "glow"] } +eframe = { version = "0.27", default-features = false, features = ["default_fonts", "glow"] } image = { version = "0.24", default-features = false, features = ["png"] } [package.metadata.docs.rs]