Skip to content

Commit

Permalink
Release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lampsitter committed Feb 5, 2024
1 parent 7d2f9b4 commit dfe07be
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Backends.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ egui_commonmark offers __experimental__ support for using [comrak](https://crate
as parsing backend. By default pulldown_cmark is used. To use comrak instead do:

```toml
egui_commonmark = { version = "0.11", default-features = false, features = ["load-images", "comrak"] }
egui_commonmark = { version = "0.12", default-features = false, features = ["load-images", "comrak"] }
```

### Why two parsing backends?
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,24 @@

## Unreleased

## 0.12.0 - 2024-02-05

### Changed

- Update to egui 0.26 ([#31](https://github.com/lampsitter/egui_commonmark/pull/31) by [@emilk](https://github.com/emilk))

### Fixed

- Missing space after tables


## 0.11.0 - 2024-01-08

### Changed

- Update to egui 0.25 ([#27](https://github.com/lampsitter/egui_commonmark/pull/27) by [@emilk](https://github.com/emilk))


## 0.10.2 - 2023-12-13

### Added
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.11.0"
version = "0.12.0"
edition = "2021"
description = "Commonmark viewer for egui"
keywords = ["commonmark", "egui"]
Expand All @@ -10,12 +10,12 @@ license = "MIT OR Apache-2.0"
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"]
include = ["**/*.rs", "LICENSE-MIT", "LICENSE-APACHE", "Cargo.toml"]
rust-version = "1.72" # Follow egui

[dependencies]
egui_extras = "0.25"
egui.version = "0.25"
egui_extras = "0.26"
egui.version = "0.26"

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.25", default-features = false, features = ["default_fonts", "glow"] }
eframe = { version = "0.26", 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.11"
egui_commonmark = "0.12"
# Specify what image formats you want to use
image = { version = "0.24", default-features = false, features = ["png"] }
```
Expand Down

0 comments on commit dfe07be

Please sign in to comment.