From f65c8c9269eedff18fbaca9e30969a6180e63935 Mon Sep 17 00:00:00 2001 From: Lucas Meurer Date: Thu, 19 Dec 2024 14:16:07 +0100 Subject: [PATCH] chore: Release --- Cargo.lock | 28 ++++++++++++------------ Cargo.toml | 30 +++++++++++++------------- crates/egui_animation/Cargo.toml | 2 +- crates/egui_dnd/Cargo.toml | 2 +- crates/egui_flex/Cargo.toml | 2 +- crates/egui_form/Cargo.toml | 2 +- crates/egui_inbox/Cargo.toml | 2 +- crates/egui_infinite_scroll/Cargo.toml | 2 +- crates/egui_material_icons/Cargo.toml | 2 +- crates/egui_pull_to_refresh/Cargo.toml | 2 +- crates/egui_router/Cargo.toml | 2 +- crates/egui_suspense/Cargo.toml | 2 +- crates/egui_thumbhash/Cargo.toml | 2 +- crates/egui_virtual_list/Cargo.toml | 2 +- crates/hello_egui_utils/Cargo.toml | 2 +- 15 files changed, 42 insertions(+), 42 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index b064464..5aaf964 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1431,7 +1431,7 @@ dependencies = [ [[package]] name = "egui_animation" -version = "0.6.0" +version = "0.7.0" dependencies = [ "eframe", "egui 0.30.0", @@ -1476,7 +1476,7 @@ dependencies = [ [[package]] name = "egui_dnd" -version = "0.10.0" +version = "0.11.0" dependencies = [ "color-hex", "eframe", @@ -1523,7 +1523,7 @@ dependencies = [ [[package]] name = "egui_flex" -version = "0.1.1" +version = "0.2.0" dependencies = [ "eframe", "egui 0.30.0", @@ -1536,7 +1536,7 @@ dependencies = [ [[package]] name = "egui_form" -version = "0.3.0" +version = "0.4.0" dependencies = [ "eframe", "egui 0.30.0", @@ -1564,7 +1564,7 @@ dependencies = [ [[package]] name = "egui_inbox" -version = "0.6.0" +version = "0.7.0" dependencies = [ "derive-new", "eframe", @@ -1582,7 +1582,7 @@ dependencies = [ [[package]] name = "egui_infinite_scroll" -version = "0.5.0" +version = "0.6.0" dependencies = [ "eframe", "egui 0.30.0", @@ -1611,7 +1611,7 @@ dependencies = [ [[package]] name = "egui_material_icons" -version = "0.1.0" +version = "0.2.0" dependencies = [ "eframe", "egui 0.30.0", @@ -1620,7 +1620,7 @@ dependencies = [ [[package]] name = "egui_pull_to_refresh" -version = "0.6.0" +version = "0.7.0" dependencies = [ "eframe", "egui 0.30.0", @@ -1630,7 +1630,7 @@ dependencies = [ [[package]] name = "egui_router" -version = "0.2.0" +version = "0.3.0" dependencies = [ "eframe", "egui 0.30.0", @@ -1648,7 +1648,7 @@ dependencies = [ [[package]] name = "egui_suspense" -version = "0.6.0" +version = "0.7.0" dependencies = [ "eframe", "egui 0.30.0", @@ -1672,7 +1672,7 @@ dependencies = [ [[package]] name = "egui_thumbhash" -version = "0.5.0" +version = "0.6.0" dependencies = [ "base64 0.22.1", "eframe", @@ -1687,7 +1687,7 @@ dependencies = [ [[package]] name = "egui_virtual_list" -version = "0.5.0" +version = "0.6.0" dependencies = [ "eframe", "egui 0.30.0", @@ -2744,7 +2744,7 @@ checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" [[package]] name = "hello_egui" -version = "0.6.0" +version = "0.7.0" dependencies = [ "egui_animation", "egui_dnd", @@ -2762,7 +2762,7 @@ dependencies = [ [[package]] name = "hello_egui_utils" -version = "0.6.0" +version = "0.7.0" dependencies = [ "concat-idents", "eframe", diff --git a/Cargo.toml b/Cargo.toml index 75305b3..8391262 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello_egui" -version = "0.6.0" +version = "0.7.0" edition = "2021" description = "A collection of useful crates for egui." authors = ["Lucas Meurer"] @@ -71,20 +71,20 @@ members = ["fancy-example", "crates/*", "scripts"] resolver = "2" [workspace.dependencies] -egui_dnd = { path = "./crates/egui_dnd", version = "0.10.0" } -egui_animation = { path = "./crates/egui_animation", version = "0.6.0" } -hello_egui_utils = { path = "./crates/hello_egui_utils", version = "0.6.0" } -egui_flex = { path = "./crates/egui_flex", version = "0.1.1" } -egui_form = { path = "./crates/egui_form", version = "0.3.0" } -egui_inbox = { path = "./crates/egui_inbox", version = "0.6.0" } -egui_pull_to_refresh = { path = "./crates/egui_pull_to_refresh", version = "0.6.0" } -egui_router = { path = "./crates/egui_router", version = "0.2.0" } -egui_suspense = { path = "./crates/egui_suspense", version = "0.6.0" } -egui_virtual_list = { path = "./crates/egui_virtual_list", version = "0.5.0" } -egui_infinite_scroll = { path = "./crates/egui_infinite_scroll", version = "0.5.0" } -egui_thumbhash = { path = "./crates/egui_thumbhash", version = "0.5.0" } -egui_material_icons = { path = "./crates/egui_material_icons", version = "0.1.0" } -hello_egui = { path = ".", version = "0.6.0" } +egui_dnd = { path = "./crates/egui_dnd", version = "0.11.0" } +egui_animation = { path = "./crates/egui_animation", version = "0.7.0" } +hello_egui_utils = { path = "./crates/hello_egui_utils", version = "0.7.0" } +egui_flex = { path = "./crates/egui_flex", version = "0.2.0" } +egui_form = { path = "./crates/egui_form", version = "0.4.0" } +egui_inbox = { path = "./crates/egui_inbox", version = "0.7.0" } +egui_pull_to_refresh = { path = "./crates/egui_pull_to_refresh", version = "0.7.0" } +egui_router = { path = "./crates/egui_router", version = "0.3.0" } +egui_suspense = { path = "./crates/egui_suspense", version = "0.7.0" } +egui_virtual_list = { path = "./crates/egui_virtual_list", version = "0.6.0" } +egui_infinite_scroll = { path = "./crates/egui_infinite_scroll", version = "0.6.0" } +egui_thumbhash = { path = "./crates/egui_thumbhash", version = "0.6.0" } +egui_material_icons = { path = "./crates/egui_material_icons", version = "0.2.0" } +hello_egui = { path = ".", version = "0.7.0" } egui = { version = "0.30.0", default-features = false } egui_kittest = { version = "0.30" } diff --git a/crates/egui_animation/Cargo.toml b/crates/egui_animation/Cargo.toml index af78599..f6845b5 100644 --- a/crates/egui_animation/Cargo.toml +++ b/crates/egui_animation/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_animation" -version = "0.6.0" +version = "0.7.0" edition = "2021" description = "Experimental animation utilities for egui, including easing functions and a collapse view." license = "MIT" diff --git a/crates/egui_dnd/Cargo.toml b/crates/egui_dnd/Cargo.toml index a639745..26fbe79 100644 --- a/crates/egui_dnd/Cargo.toml +++ b/crates/egui_dnd/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_dnd" -version = "0.10.0" +version = "0.11.0" edition = "2021" authors = ["Lucas Meurer"] repository = "https://github.com/lucasmerlin/hello_egui/tree/main/crates/egui_dnd" diff --git a/crates/egui_flex/Cargo.toml b/crates/egui_flex/Cargo.toml index e56da7e..0068737 100644 --- a/crates/egui_flex/Cargo.toml +++ b/crates/egui_flex/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_flex" -version = "0.1.1" +version = "0.2.0" edition = "2021" repository = "https://github.com/lucasmerlin/hello_egui/tree/main/crates/egui_flex" homepage = "https://lucasmerlin.github.io/hello_egui/#/example/flex" diff --git a/crates/egui_form/Cargo.toml b/crates/egui_form/Cargo.toml index 7a63e6f..6e11638 100644 --- a/crates/egui_form/Cargo.toml +++ b/crates/egui_form/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_form" -version = "0.3.0" +version = "0.4.0" edition = "2021" description = "Form validation for egui" license = "MIT" diff --git a/crates/egui_inbox/Cargo.toml b/crates/egui_inbox/Cargo.toml index 64b0864..43a07fd 100644 --- a/crates/egui_inbox/Cargo.toml +++ b/crates/egui_inbox/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_inbox" -version = "0.6.0" +version = "0.7.0" edition = "2021" description = "Utility to send messages to egui views from async functions, callbacks, etc. without having to use interior mutability." license = "MIT" diff --git a/crates/egui_infinite_scroll/Cargo.toml b/crates/egui_infinite_scroll/Cargo.toml index 15da926..4258e2a 100644 --- a/crates/egui_infinite_scroll/Cargo.toml +++ b/crates/egui_infinite_scroll/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_infinite_scroll" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = ["Lucas Meurer"] homepage = "https://lucasmerlin.github.io/hello_egui/" diff --git a/crates/egui_material_icons/Cargo.toml b/crates/egui_material_icons/Cargo.toml index ad10210..ae4492b 100644 --- a/crates/egui_material_icons/Cargo.toml +++ b/crates/egui_material_icons/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_material_icons" -version = "0.1.0" +version = "0.2.0" edition = "2021" categories = ["gui"] keywords = ["egui", "icons", "material"] diff --git a/crates/egui_pull_to_refresh/Cargo.toml b/crates/egui_pull_to_refresh/Cargo.toml index 256d5cc..66a8487 100644 --- a/crates/egui_pull_to_refresh/Cargo.toml +++ b/crates/egui_pull_to_refresh/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_pull_to_refresh" -version = "0.6.0" +version = "0.7.0" edition = "2021" description = "A pull to refresh library for egui" license = "MIT" diff --git a/crates/egui_router/Cargo.toml b/crates/egui_router/Cargo.toml index b96e612..a70ff0f 100644 --- a/crates/egui_router/Cargo.toml +++ b/crates/egui_router/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_router" -version = "0.2.0" +version = "0.3.0" edition = "2021" authors = ["Lucas Meurer"] description = "A SPA router for egui" diff --git a/crates/egui_suspense/Cargo.toml b/crates/egui_suspense/Cargo.toml index 56a0777..0a32bdb 100644 --- a/crates/egui_suspense/Cargo.toml +++ b/crates/egui_suspense/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_suspense" -version = "0.6.0" +version = "0.7.0" edition = "2021" authors = ["Lucas Meurer"] description = "Automatically show loading and error uis for egui" diff --git a/crates/egui_thumbhash/Cargo.toml b/crates/egui_thumbhash/Cargo.toml index f1126de..7d23e35 100644 --- a/crates/egui_thumbhash/Cargo.toml +++ b/crates/egui_thumbhash/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_thumbhash" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = ["Lucas Meurer"] description = "Easily use thumbhashes in egui" diff --git a/crates/egui_virtual_list/Cargo.toml b/crates/egui_virtual_list/Cargo.toml index a3ac404..7c0a35d 100644 --- a/crates/egui_virtual_list/Cargo.toml +++ b/crates/egui_virtual_list/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_virtual_list" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = ["Lucas Meurer"] homepage = "https://lucasmerlin.github.io/hello_egui/#/example/gallery" diff --git a/crates/hello_egui_utils/Cargo.toml b/crates/hello_egui_utils/Cargo.toml index f6d150a..03a8a70 100644 --- a/crates/hello_egui_utils/Cargo.toml +++ b/crates/hello_egui_utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hello_egui_utils" -version = "0.6.0" +version = "0.7.0" edition = "2021" description = "Utilities used by crates from https://github.com/lucasmerlin/hello_egui" license = "MIT"