diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dc40c0d..a7f77d83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ NOTE: [`eframe`](eframe/CHANGELOG.md), [`egui_web`](egui_web/CHANGELOG.md) and [ ## Unreleased + +## 0.13.1 - 2021-06-28 - Plot fixes + ### Added ⭐ * Plot: you can now set the stroke of a `HLine/VLine`. @@ -14,7 +17,6 @@ NOTE: [`eframe`](eframe/CHANGELOG.md), [`egui_web`](egui_web/CHANGELOG.md) and [ * `Plot::new` now takes an `id_source: impl Hash` instead of a `name: impl ToString`. Functionally it is the same. - ## 0.13.0 - 2021-06-24 - Better panels, plots and new visual style ### Added ⭐ diff --git a/Cargo.lock b/Cargo.lock index 5fae169f..c2e17415 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -776,7 +776,7 @@ dependencies = [ [[package]] name = "egui" -version = "0.13.0" +version = "0.13.1" dependencies = [ "epaint", "ron", diff --git a/egui/Cargo.toml b/egui/Cargo.toml index b25e325e..46f9c9a0 100644 --- a/egui/Cargo.toml +++ b/egui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui" -version = "0.13.0" +version = "0.13.1" authors = ["Emil Ernerfeldt "] description = "Simple, portable immediate mode GUI library for Rust" edition = "2018"