Changelogs: document that they are updated upon release (not by users)
This commit is contained in:
parent
b2b6558c78
commit
92593b70fa
|
|
@ -3,8 +3,8 @@ All notable changes to the `egui` crate will be documented in this file.
|
|||
|
||||
NOTE: [`epaint`](crates/epaint/CHANGELOG.md), [`eframe`](crates/eframe/CHANGELOG.md), [`egui-winit`](crates/egui-winit/CHANGELOG.md), [`egui_glium`](crates/egui_glium/CHANGELOG.md), [`egui_glow`](crates/egui_glow/CHANGELOG.md) and [`egui-wgpu`](crates/egui-wgpu/CHANGELOG.md) have their own changelogs!
|
||||
|
||||
|
||||
## Unreleased
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.22.0 - 2023-05-23 - A plethora of small improvements
|
||||
|
|
|
|||
|
|
@ -2,7 +2,8 @@
|
|||
All notable changes to the `ecolor` crate will be noted in this file.
|
||||
|
||||
|
||||
## Unreleased
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.22.0 - 2023-05-23
|
||||
|
|
|
|||
|
|
@ -3,9 +3,9 @@ All notable changes to the `eframe` crate.
|
|||
|
||||
NOTE: [`egui-winit`](../egui-winit/CHANGELOG.md), [`egui_glium`](../egui_glium/CHANGELOG.md), [`egui_glow`](../egui_glow/CHANGELOG.md),and [`egui-wgpu`](../egui-wgpu/CHANGELOG.md) have their own changelogs!
|
||||
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
## Unreleased
|
||||
* Expose raw window and display handles in `CreationContext` and `Frame`
|
||||
|
||||
## 0.22.0 - 2023-05-23
|
||||
* Fix: `request_repaint_after` works even when called from background thread [#2939](https://github.com/emilk/egui/pull/2939)
|
||||
|
|
|
|||
|
|
@ -2,8 +2,8 @@
|
|||
All notable changes to the `egui-wgpu` integration will be noted in this file.
|
||||
|
||||
|
||||
## Unreleased
|
||||
* Fix panic on wgpu GL backend due to new screenshot capability ([#3068](https://github.com/emilk/egui/issues/3068), [#3078](https://github.com/emilk/egui/pull/3078)
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.22.0 - 2023-05-23
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# Changelog for egui-winit
|
||||
All notable changes to the `egui-winit` integration will be noted in this file.
|
||||
|
||||
|
||||
## Unreleased
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.22.0 - 2023-05-23
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# Changelog for egui_extras
|
||||
All notable changes to the `egui_extras` integration will be noted in this file.
|
||||
|
||||
|
||||
## Unreleased
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.22.0 - 2023-05-23
|
||||
|
|
|
|||
|
|
@ -1,6 +1,9 @@
|
|||
# Changelog for egui_glium
|
||||
All notable changes to the `egui_glium` integration will be noted in this file.
|
||||
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## Unreleased
|
||||
* Remove the `screen_reader` feature ([#2669](https://github.com/emilk/egui/pull/2669)).
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
# Changelog for egui_glow
|
||||
All notable changes to the `egui_glow` integration will be noted in this file.
|
||||
|
||||
|
||||
## Unreleased
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
|
||||
## 0.22.0 - 2023-05-23
|
||||
|
|
|
|||
|
|
@ -1,8 +1,9 @@
|
|||
# epaint changelog
|
||||
All notable changes to the epaint crate will be documented in this file.
|
||||
|
||||
This file is updated upon each release.
|
||||
Changes since the last release can be found by running the `scripts/generate_changelog.py` script.
|
||||
|
||||
## Unreleased
|
||||
|
||||
|
||||
## 0.22.0 - 2023-05-23
|
||||
|
|
|
|||
Loading…
Reference in New Issue