Skip to content

Commit

Permalink
Release 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lampsitter committed Nov 23, 2023
1 parent d23698a commit c6e67ae
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

## Unreleased

## 0.10.0 - 2023-11-23

### Changed

- Update to egui 0.24

## 0.9.2 - 2023-11-07

### Fixed
Expand Down
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "egui_commonmark"
authors = ["Erlend Walstad"]
version = "0.9.2"
version = "0.10.0"
edition = "2021"
description = "Commonmark viewer for egui"
keywords = ["commonmark", "egui"]
Expand All @@ -11,12 +11,12 @@ readme = "README.md"
repository = "https://github.com/lampsitter/egui_commonmark"
documentation = "https://docs.rs/egui_commonmark"
include = ["src/*.rs", "LICENSE-MIT", "LICENSE-APACHE", "Cargo.toml"]
rust-version = "1.70" # Follow egui
rust-version = "1.72" # Follow egui

[dependencies]
egui.version = "0.23"
egui.version = "0.24"
pulldown-cmark = { version = "0.9.3", default-features = false }
egui_extras.version = "0.23"
egui_extras = "0.24"

syntect = { version = "5.0.0", optional = true, default-features = false, features = [
"default-fancy",
Expand All @@ -40,7 +40,7 @@ svg = ["egui_extras/svg"]
fetch = ["egui_extras/http"]

[dev-dependencies]
eframe = { version = "0.23", default-features = false, features = ["default_fonts", "glow"] }
eframe = { version = "0.24", default-features = false, features = ["default_fonts", "glow"] }
image = { version = "0.24", default-features = false, features = ["png"] }

[package.metadata.docs.rs]
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.9"
egui_commonmark = "0.10"
# Specify what image formats you want to use
image = { version = "0.24", default-features = false, features = ["png"] }
```
Expand Down

0 comments on commit c6e67ae

Please sign in to comment.