Fix incorrect date in CHANGELOGs

This commit is contained in:
Emil Ernerfeldt 2022-12-09 08:29:44 +01:00
parent 7d91e90481
commit 85f615f21c
8 changed files with 8 additions and 8 deletions

View file

@ -7,7 +7,7 @@ NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG
## Unreleased
## 0.20.0 - 2022-08-20 - AccessKit, prettier text, overlapping widgets
## 0.20.0 - 2022-12-08 - AccessKit, prettier text, overlapping widgets
* MSRV (Minimum Supported Rust Version) is now `1.65.0` ([#2314](https://github.com/emilk/egui/pull/2314)).
* ⚠️ BREAKING: egui now expects integrations to do all color blending in gamma space ([#2071](https://github.com/emilk/egui/pull/2071)).
* ⚠️ BREAKING: if you have overlapping interactive widgets, only the top widget (last added) will be interactive ([#2244](https://github.com/emilk/egui/pull/2244)).

View file

@ -5,5 +5,5 @@ All notable changes to the `ecolor` crate will be noted in this file.
## Unreleased
## 0.20.0 - 2022-08-20
## 0.20.0 - 2022-12-08
* Split out `ecolor` crate from `epaint`

View file

@ -7,7 +7,7 @@ NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glium`](../egui_glium/C
## Unreleased
## 0.20.0 - 2022-08-20 - AccessKit integration and `wgpu` web support
## 0.20.0 - 2022-12-08 - AccessKit integration and `wgpu` web support
* MSRV (Minimum Supported Rust Version) is now `1.65.0` ([#2314](https://github.com/emilk/egui/pull/2314)).
* Allow empty textures with the glow renderer.

View file

@ -5,7 +5,7 @@ All notable changes to the `egui-wgpu` integration will be noted in this file.
## Unreleased
## 0.20.0 - 2022-08-20 - web support
## 0.20.0 - 2022-12-08 - web support
* Renamed `RenderPass` to `Renderer`.
* Renamed `RenderPass::execute` to `RenderPass::render`.
* Renamed `RenderPass::execute_with_renderpass` to `Renderer::render` (replacing existing `Renderer::render`)

View file

@ -5,7 +5,7 @@ All notable changes to the `egui-winit` integration will be noted in this file.
## Unreleased
## 0.20.0 - 2022-08-20
## 0.20.0 - 2022-12-08
* The default features of the `winit` crate are not enabled if the default features of `egui-winit` are disabled too ([#1971](https://github.com/emilk/egui/pull/1971)).
* Added new feature `wayland` which enables Wayland support ([#1971](https://github.com/emilk/egui/pull/1971)).
* Don't repaint when just moving window ([#1980](https://github.com/emilk/egui/pull/1980)).

View file

@ -5,7 +5,7 @@ All notable changes to the `egui_extras` integration will be noted in this file.
## Unreleased
## 0.20.0 - 2022-08-20
## 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)):
* Double-click column separators to auto-size the column.

View file

@ -5,7 +5,7 @@ All notable changes to the `egui_glow` integration will be noted in this file.
## Unreleased
## 0.20.0 - 2022-08-20
## 0.20.0 - 2022-12-08
* Allow empty textures.
* Added `shader_version` variable on `EguiGlow::new` for easier cross compilling on different OpenGL | ES targets ([#1993](https://github.com/emilk/egui/pull/1993)).

View file

@ -5,7 +5,7 @@ All notable changes to the epaint crate will be documented in this file.
## Unreleased
## 0.20.0 - 2022-08-20
## 0.20.0 - 2022-12-08
* ⚠️ BREAKING: Fix text being too small ([#2069](https://github.com/emilk/egui/pull/2069)).
* ⚠️ BREAKING: epaint now expects integrations to do all color blending in gamma space ([#2071](https://github.com/emilk/egui/pull/2071)).
* Improve mixed CJK/Latin line-breaking ([#1986](https://github.com/emilk/egui/pull/1986)).