From b3f990f4b580d0c0a259eb2240b5d0a22cbca080 Mon Sep 17 00:00:00 2001 From: Erlend Walstad <96946613+lampsitter@users.noreply.github.com> Date: Sun, 12 May 2024 11:21:47 +0200 Subject: [PATCH] Release 0.16 --- CHANGELOG.md | 2 +- Cargo.toml | 8 ++++---- README.md | 2 +- egui_commonmark_macros/README.md | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a8d2c20..1ecf49e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # egui_commomnark changelog -## Unreleased +## 0.16.0 - 2024-05-12 ### Added diff --git a/Cargo.toml b/Cargo.toml index 8cb9deb..0f75da9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,16 +11,16 @@ resolver = "2" [workspace.package] license = "MIT OR Apache-2.0" edition = "2021" -rust-version = "1.76" # Required by egui -version = "0.16.0-alpha.1" +rust-version = "1.76" # Follows egui +version = "0.16.0" repository = "https://github.com/lampsitter/egui_commonmark" [workspace.dependencies] egui_extras = "0.27" egui = "0.27" -egui_commonmark_backend = { version = "0.16.0-alpha.1", path = "egui_commonmark_backend", default-features = false } -egui_commonmark_macros = { version = "0.16.0-alpha.1", path = "egui_commonmark_macros", default-features = false } +egui_commonmark_backend = { version = "0.16.0", path = "egui_commonmark_backend", default-features = false } +egui_commonmark_macros = { version = "0.16.0", path = "egui_commonmark_macros", default-features = false } # To add features to documentation document-features = { version = "0.2" } diff --git a/README.md b/README.md index 91e8b63..6dbe0ef 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.15" +egui_commonmark = "0.16" # Specify what image formats you want to use image = { version = "0.24", default-features = false, features = ["png"] } ``` diff --git a/egui_commonmark_macros/README.md b/egui_commonmark_macros/README.md index f0f9d57..0730482 100644 --- a/egui_commonmark_macros/README.md +++ b/egui_commonmark_macros/README.md @@ -14,7 +14,7 @@ this crate through `egui_commonmark` by enabling the `macros` feature. In Cargo.toml: ```toml -egui_commonmark = "0.15" +egui_commonmark = "0.16" # Specify what image formats you want to use image = { version = "0.24", default-features = false, features = ["png"] } ```