From 7941b79a52cbc35793029cd913b92f3a76048dfd Mon Sep 17 00:00:00 2001 From: Matt Campbell Date: Sat, 23 Jul 2022 06:10:37 -0500 Subject: [PATCH] Add changelog entries --- CHANGELOG.md | 1 + eframe/CHANGELOG.md | 1 + egui-winit/CHANGELOG.md | 1 + egui_extras/CHANGELOG.md | 1 + egui_glium/CHANGELOG.md | 1 + egui_glow/CHANGELOG.md | 1 + epaint/CHANGELOG.md | 1 + 7 files changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d19355e2edc0..d7f210f805a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ NOTE: [`epaint`](epaint/CHANGELOG.md), [`eframe`](eframe/CHANGELOG.md), [`egui-w * `PaintCallback` shapes now require the whole callback to be put in an `Arc` with the value being a backend-specific callback type. ([#1684](https://github.com/emilk/egui/pull/1684)) * Replaced `needs_repaint` in `FullOutput` with `repaint_after`. Used to force repaint after the set duration in reactive mode.([#1694](https://github.com/emilk/egui/pull/1694)). * `Layout::left_to_right` and `Layout::right_to_left` now takes the vertical align as an argument. Previous default was `Align::Center`. +* MSRV (Minimum Supported Rust Version) is now `1.61.0` ([#1846](https://github.com/emilk/egui/pull/1846)). ### Fixed 🐛 * Fixed `ImageButton`'s changing background padding on hover ([#1595](https://github.com/emilk/egui/pull/1595)). diff --git a/eframe/CHANGELOG.md b/eframe/CHANGELOG.md index 4f40df08bb9f..1e2e9bc81708 100644 --- a/eframe/CHANGELOG.md +++ b/eframe/CHANGELOG.md @@ -13,6 +13,7 @@ NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glium`](../egui_glium/C * Allow running on native without hardware accelerated rendering. Change with `NativeOptions::hardware_acceleration` ([#1681]([#1693](https://github.com/emilk/egui/pull/1693)). * `dark-light` (dark mode detection) is now enabled by default on Mac and Windows ([#1726](https://github.com/emilk/egui/pull/1726)). * Add `NativeOptions::follow_system_theme` and `NativeOptions::default_theme` ([#1726](https://github.com/emilk/egui/pull/1726)). +* MSRV (Minimum Supported Rust Version) is now `1.61.0` ([#1846](https://github.com/emilk/egui/pull/1846)). ## 0.18.0 - 2022-04-30 diff --git a/egui-winit/CHANGELOG.md b/egui-winit/CHANGELOG.md index 3838632613e5..a1b5fe65cffc 100644 --- a/egui-winit/CHANGELOG.md +++ b/egui-winit/CHANGELOG.md @@ -5,6 +5,7 @@ All notable changes to the `egui-winit` integration will be noted in this file. ## Unreleased * Fix clipboard on Wayland ([#1613](https://github.com/emilk/egui/pull/1613)). * Allow deferred render + surface state initialization for Android ([#1634](https://github.com/emilk/egui/pull/1634)) +* MSRV (Minimum Supported Rust Version) is now `1.61.0` ([#1846](https://github.com/emilk/egui/pull/1846)). ## 0.18.0 - 2022-04-30 diff --git a/egui_extras/CHANGELOG.md b/egui_extras/CHANGELOG.md index 81db4ecc26de..886cbca6cbea 100644 --- a/egui_extras/CHANGELOG.md +++ b/egui_extras/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to the `egui_extras` integration will be noted in this file. ## Unreleased * You can now specify a texture filter for `RetainedImage` ([#1636](https://github.com/emilk/egui/pull/1636)). +* MSRV (Minimum Supported Rust Version) is now `1.61.0` ([#1846](https://github.com/emilk/egui/pull/1846)). ## 0.18.0 - 2022-04-30 diff --git a/egui_glium/CHANGELOG.md b/egui_glium/CHANGELOG.md index 5d8ccd8ab9f6..9971a954dd53 100644 --- a/egui_glium/CHANGELOG.md +++ b/egui_glium/CHANGELOG.md @@ -3,6 +3,7 @@ All notable changes to the `egui_glium` integration will be noted in this file. ## Unreleased +* MSRV (Minimum Supported Rust Version) is now `1.61.0` ([#1846](https://github.com/emilk/egui/pull/1846)). ## 0.18.0 - 2022-04-30 diff --git a/egui_glow/CHANGELOG.md b/egui_glow/CHANGELOG.md index 0fccbb550727..ad349d216382 100644 --- a/egui_glow/CHANGELOG.md +++ b/egui_glow/CHANGELOG.md @@ -4,6 +4,7 @@ All notable changes to the `egui_glow` integration will be noted in this file. ## Unreleased * `EguiGlow::new` now takes an `EventLoopWindowTarget` instead of a `winit::Window` ([#1634](https://github.com/emilk/egui/pull/1634)) +* MSRV (Minimum Supported Rust Version) is now `1.61.0` ([#1846](https://github.com/emilk/egui/pull/1846)). ## 0.18.1 - 2022-05-05 * Remove calls to `gl.get_error` in release builds to speed up rendering ([#1583](https://github.com/emilk/egui/pull/1583)). diff --git a/epaint/CHANGELOG.md b/epaint/CHANGELOG.md index d7eabc53fc0d..b331a99c9fb6 100644 --- a/epaint/CHANGELOG.md +++ b/epaint/CHANGELOG.md @@ -6,6 +6,7 @@ All notable changes to the epaint crate will be documented in this file. * Added `epaint::hex_color!` to create `Color32`'s from hex strings under the `color-hex` feature ([#1596](https://github.com/emilk/egui/pull/1596)). * Optimize tessellation of filled circles by 10x or more ([#1616](https://github.com/emilk/egui/pull/1616)). * Added opt-in feature `deadlock_detection` to detect double-lock of mutexes on the same thread ([#1619](https://github.com/emilk/egui/pull/1619)). +* MSRV (Minimum Supported Rust Version) is now `1.61.0` ([#1846](https://github.com/emilk/egui/pull/1846)). ## 0.18.1 - 2022-05-01