From 8c231bc99ac523c9ba1a196b733342074bc79474 Mon Sep 17 00:00:00 2001 From: Erlend Walstad <96946613+lampsitter@users.noreply.github.com> Date: Tue, 24 Oct 2023 16:16:20 +0200 Subject: [PATCH] Release 0.9.1 --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c80c2b..d148aab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # egui_commomnark changelog +## Unreleased + +## 0.9.1 - 2023-10-24 + +### Fixed + +- Missing space after heading when preceded by an image +- Missing space after separator + ## 0.9.0 - 2023-10-14 ### Added diff --git a/Cargo.toml b/Cargo.toml index c2085b5..17a4717 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "egui_commonmark" authors = ["Erlend Walstad"] -version = "0.9.0" +version = "0.9.1" edition = "2021" description = "Commonmark viewer for egui" keywords = ["commonmark", "egui"] diff --git a/README.md b/README.md index 18df947..0033996 100644 --- a/README.md +++ b/README.md @@ -13,7 +13,7 @@ Github's markdown syntax: tables, strikethrough, tasklists and footnotes. In Cargo.toml: ```toml -egui_commonmark = "0.8" +egui_commonmark = "0.9" # Specify what image formats you want to use image = { version = "0.24", default-features = false, features = ["png"] } ```