Skip to content

Commit

Permalink
Update to egui 0.27 (#37)
Browse files Browse the repository at this point in the history
* Update to egui 0.27

* update pr link in changelog

* Fix typos
  • Loading branch information
emilk authored Mar 26, 2024
1 parent 217f108 commit c4e8b24
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Backends.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |


3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))

Expand All @@ -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
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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]
Expand Down

0 comments on commit c4e8b24

Please sign in to comment.