1
0
mirror of https://github.com/emilk/egui.git synced 2026-09-01 14:20:04 -04:00

Release 0.21.0 - Deadlock fix and winit update

This commit is contained in:
Emil Ernerfeldt
2023-02-08 20:11:21 +01:00
parent 1384fa3287
commit ae722ab0cf
21 changed files with 70 additions and 45 deletions

View File

@@ -5,6 +5,10 @@ All notable changes to the `egui_extras` integration will be noted in this file.
## Unreleased
## 0.21.0 - 2023-02-08
* Update to egui 0.21
## 0.20.0 - 2022-12-08
* Added `RetainedImage::from_svg_bytes_with_size` to be able to specify a size for SVGs to be rasterized at.
* Lots of `Table` improvements ([#2369](https://github.com/emilk/egui/pull/2369)):

View File

@@ -1,6 +1,6 @@
[package]
name = "egui_extras"
version = "0.20.0"
version = "0.21.0"
authors = [
"Dominik Rössler <dominik@freshx.de>",
"Emil Ernerfeldt <emil.ernerfeldt@gmail.com>",
@@ -37,7 +37,7 @@ tracing = ["dep:tracing", "egui/tracing"]
[dependencies]
egui = { version = "0.20.0", path = "../egui", default-features = false }
egui = { version = "0.21.0", path = "../egui", default-features = false }
serde = { version = "1", features = ["derive"] }