Skip to content

Commit

Permalink
Release 0.17
Browse files Browse the repository at this point in the history
  • Loading branch information
lampsitter committed Jul 3, 2024
1 parent ed5b00f commit 4b3a451
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# egui_commomnark changelog

## 0.17.0 - 2024-07-03

### Changed

- Updated egui to 0.28 ([#51](https://github.com/lampsitter/egui_commonmark/pull/51) by [@emilk](https://github.com/emilk))
- Updated pulldown-cmark to 0.11

## 0.16.1 - 2024-05-12

## Fixed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resolver = "2"
license = "MIT OR Apache-2.0"
edition = "2021"
rust-version = "1.76" # Follows egui
version = "0.16.1"
version = "0.17.0"
repository = "https://github.com/lampsitter/egui_commonmark"

[workspace.dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ Github's markdown syntax: tables, strikethrough, tasklists and footnotes.
In Cargo.toml:

```toml
egui_commonmark = "0.16"
egui_commonmark = "0.17"
# Specify what image formats you want to use
image = { version = "0.24", default-features = false, features = ["png"] }
image = { version = "0.25", default-features = false, features = ["png"] }
```

```rust
Expand Down
4 changes: 2 additions & 2 deletions egui_commonmark_macros/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ this crate through `egui_commonmark` by enabling the `macros` feature.
In Cargo.toml:

```toml
egui_commonmark = "0.16"
egui_commonmark = "0.17"
# Specify what image formats you want to use
image = { version = "0.24", default-features = false, features = ["png"] }
image = { version = "0.25", default-features = false, features = ["png"] }
```

### Example
Expand Down

0 comments on commit 4b3a451

Please sign in to comment.