From f9f8d6c112ecab1e20bafb382dec7ca886610c80 Mon Sep 17 00:00:00 2001 From: Emil Ernerfeldt Date: Tue, 6 Feb 2024 16:21:08 +0100 Subject: [PATCH] Release 0.7.1 --- CHANGELOG.md | 5 +++++ Cargo.lock | 2 +- Cargo.toml | 2 +- RELEASES.md | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 425c978..08d7e26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # `egui_tiles` Changelog +## [0.7.1](https://github.com/rerun-io/egui_tiles/compare/0.7.0...0.7.1) - 2024-02-06 +* Make sure there is always an active tab [#50](https://github.com/rerun-io/egui_tiles/pull/50) +* Derive `Clone, Debug, PartialEq, Eq` for `EditAction` [#51](https://github.com/rerun-io/egui_tiles/pull/51) + + ## [0.7.0](https://github.com/rerun-io/egui_tiles/compare/0.6.0...0.7.0) - 2024-02-06 * Add an API to move an existing tile to an give container and position index [#44](https://github.com/rerun-io/egui_tiles/pull/44) * Properly handle grid layout with `Tree::move_tile_to_container()` [#45](https://github.com/rerun-io/egui_tiles/pull/45) diff --git a/Cargo.lock b/Cargo.lock index becc321..0630157 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -543,7 +543,7 @@ dependencies = [ [[package]] name = "egui_tiles" -version = "0.7.0" +version = "0.7.1" dependencies = [ "ahash", "eframe", diff --git a/Cargo.toml b/Cargo.toml index 882edeb..edfb550 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ name = "egui_tiles" readme = "README.md" repository = "https://github.com/rerun-io/egui_tiles" rust-version = "1.72" -version = "0.7.0" +version = "0.7.1" [package.metadata.docs.rs] all-features = true diff --git a/RELEASES.md b/RELEASES.md index 6eceb52..24e178b 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,6 +1,6 @@ # Release Checklist -* [ ] Update `CHANGELOG.md` +* [ ] Update `CHANGELOG.md` using `./generate_changelog.py --commit-range 0.x..HEAD` * [ ] Bump version numbers * [ ] `git commit -m 'Release 0.x.0 - summary'` * [ ] `cargo publish`