diff --git a/crates/egui_extras/CHANGELOG.md b/crates/egui_extras/CHANGELOG.md index 8070359da34..937a896779f 100644 --- a/crates/egui_extras/CHANGELOG.md +++ b/crates/egui_extras/CHANGELOG.md @@ -7,7 +7,7 @@ Changes since the last release can be found by running the `scripts/generate_cha ## 0.23.0 - 2023-09-27 * `egui_extras::install_image_loaders` [#3297](https://github.com/emilk/egui/pull/3297) [#3315](https://github.com/emilk/egui/pull/3315) [#3328](https://github.com/emilk/egui/pull/3328) (thanks [@jprochazk](https://github.com/jprochazk)!) -* Add syntax highlighing feature to `egui_extras` [#3333](https://github.com/emilk/egui/pull/3333) [#3388](https://github.com/emilk/egui/pull/3388) +* Add syntax highlighting feature to `egui_extras` [#3333](https://github.com/emilk/egui/pull/3333) [#3388](https://github.com/emilk/egui/pull/3388) * Add `TableBuilder::drag_to_scroll` [#3100](https://github.com/emilk/egui/pull/3100) (thanks [@KYovchevski](https://github.com/KYovchevski)!) * Add opt-in `puffin` feature to `egui-extras` [#3307](https://github.com/emilk/egui/pull/3307) * Always depend on `log` crate [#3336](https://github.com/emilk/egui/pull/3336) diff --git a/crates/egui_plot/CHANGELOG.md b/crates/egui_plot/CHANGELOG.md index 6ed946a62a8..e0e093b52c2 100644 --- a/crates/egui_plot/CHANGELOG.md +++ b/crates/egui_plot/CHANGELOG.md @@ -5,7 +5,7 @@ This file is updated upon each release. Changes since the last release can be found by running the `scripts/generate_changelog.py` script. -## 0.23.0 - 2023-09-27 - Initial release, after beeing forked out from `egui` +## 0.23.0 - 2023-09-27 - Initial release, after being forked out from `egui` * Draw axis labels and ticks outside of plotting window [#2284](https://github.com/emilk/egui/pull/2284) (thanks [@JohannesProgrammiert](https://github.com/JohannesProgrammiert)!) * Add `PlotUi::response()` to replace `plot_clicked()` etc [#3223](https://github.com/emilk/egui/pull/3223) * Add rotation feature to plot images [#3121](https://github.com/emilk/egui/pull/3121) (thanks [@ThundR67](https://github.com/ThundR67)!) diff --git a/scripts/generate_changelog.py b/scripts/generate_changelog.py index 77e98ccb736..b9bb86e579e 100755 --- a/scripts/generate_changelog.py +++ b/scripts/generate_changelog.py @@ -160,7 +160,7 @@ def main() -> None: title = pr_info.pr_title if pr_info else title labels = pr_info.labels if pr_info else [] - if 'exclude from changlog' in labels: + if 'exclude from changelog' in labels: continue if 'typo' in labels: # We get so many typo PRs. Let's not flood the changelog with them.