From 570a436b8b8d12b6948913b479abd5548b7c9959 Mon Sep 17 00:00:00 2001 From: Jannis Date: Wed, 3 Jul 2024 23:11:35 +0200 Subject: [PATCH] Prepare release v0.6.0 (#136) * Increase crate version * Update changelog --- CHANGELOG.md | 4 +++- Cargo.toml | 2 +- README.md | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b80d6097..0f358e54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # egui-file-dialog changelog -## Unreleased - v0.6.0 +## 2024-07-03 - v0.6.0 - Keyboard navigation, multi selection, pinable folders and more ### 🚨 Breaking Changes +- Updated `egui` from version `0.27.1` to version `0.28.0` [#133](https://github.com/fluxxcode/egui-file-dialog/pull/133) (thanks [@crumblingstatue](https://github.com/crumblingstatue)!) - Added `DialogMode::SelectMultiple` and `DialogState::SelectedMultiple` [#127](https://github.com/fluxxcode/egui-file-dialog/pull/127) - Added new labels to `FileDialogLabels` [#100](https://github.com/fluxxcode/egui-file-dialog/pull/100), [#111](https://github.com/fluxxcode/egui-file-dialog/pull/111), [#127](https://github.com/fluxxcode/egui-file-dialog/pull/127) - Added new configuration values to `FileDialogConfig` [#100](https://github.com/fluxxcode/egui-file-dialog/pull/100), [#104](https://github.com/fluxxcode/egui-file-dialog/pull/104), [#106](https://github.com/fluxxcode/egui-file-dialog/pull/106), [#110](https://github.com/fluxxcode/egui-file-dialog/pull/110), [#111](https://github.com/fluxxcode/egui-file-dialog/pull/111), [#118](https://github.com/fluxxcode/egui-file-dialog/pull/118) @@ -35,6 +36,7 @@ - Reworked `README.md` [#108](https://github.com/fluxxcode/egui-file-dialog/pull/108https://github.com/fluxxcode/egui-file-dialog/pull/108) - Added `multi_selection` example showing how to select multiple files and folders at once [#129](https://github.com/fluxxcode/egui-file-dialog/pull/129) - Updated crate documentation in `lib.rs` [#135](https://github.com/fluxxcode/egui-file-dialog/pull/135) +- Use workspace dependencies in examples [#133](https://github.com/fluxxcode/egui-file-dialog/pull/133) (thanks [@crumblingstatue](https://github.com/crumblingstatue)!) ## 2024-03-30 - v0.5.0 - egui update and QoL changes ### 🚨 Breaking Changes diff --git a/Cargo.toml b/Cargo.toml index e39fad4f..1adff052 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ eframe = { version = "0.28.0", default-features = false, features = ["glow", "pe [package] name = "egui-file-dialog" description = "An easy-to-use file dialog for egui" -version = "0.5.0" +version = "0.6.0" edition = "2021" authors = ["fluxxcode"] repository = "https://github.com/fluxxcode/egui-file-dialog" diff --git a/README.md b/README.md index 814ef774..75fb2f16 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ Cargo.toml: ```toml [dependencies] eframe = "0.28.0" -egui-file-dialog = "0.5.0" +egui-file-dialog = "0.6.0" ``` main.rs: