Skip to content

Commit

Permalink
Release 0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
lampsitter committed Feb 4, 2025
1 parent 071a125 commit 6a124e6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
# egui_commomnark changelog

## Unreleased
## 0.20.0 - 2025-02-04

### Added

- Callback function `render_math_fn` for custom math rendering
- Callback function `render_html_fn` for custom html rendering

### Changed

- Updated egui to 0.31 ([#71](https://github.com/lampsitter/egui_commonmark/pull/71) by
[@Wumpf](https://github.com/Wumpf) and [@emilk](https://github.com/emilk)

### Fixed

- Html is rendered as text instead of not being displayed
Expand Down
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ resolver = "2"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.81" # Follows egui
version = "0.19.0"
version = "0.20.0"
repository = "https://github.com/lampsitter/egui_commonmark"

[workspace.dependencies]
egui_extras = { version = "0.31", default-features = false }
egui = { version = "0.31", default-features = false }

egui_commonmark_backend = { version = "0.19.0", path = "egui_commonmark_backend", default-features = false }
egui_commonmark_macros = { version = "0.19.0", path = "egui_commonmark_macros", default-features = false }
egui_commonmark_backend = { version = "0.20.0", path = "egui_commonmark_backend", default-features = false }
egui_commonmark_macros = { version = "0.20.0", path = "egui_commonmark_macros", default-features = false }

# To add features to documentation
document-features = { version = "0.2" }
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Github's markdown syntax: tables, strikethrough, tasklists and footnotes.
In Cargo.toml:

```toml
egui_commonmark = "0.19"
egui_commonmark = "0.20"
# Specify what image formats you want to use
image = { version = "0.25", default-features = false, features = ["png"] }
```
Expand Down
2 changes: 1 addition & 1 deletion egui_commonmark_macros/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ this crate through `egui_commonmark` by enabling the `macros` feature.
In Cargo.toml:

```toml
egui_commonmark = "0.19"
egui_commonmark = "0.20"
# Specify what image formats you want to use
image = { version = "0.25", default-features = false, features = ["png"] }
```
Expand Down

0 comments on commit 6a124e6

Please sign in to comment.