hello_egui 0.8.0

A collection of useful crates for egui.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
How to release:

- Update all changelogs
  - When doing a release after egui update, run:
    - `cargo run -p scripts --bin update_changelogs -- "- Update egui to 0.x"`
    - check if the changelogs are correct
- Run `cargo run -p scripts --bin update_badges` to update badges
- Run either
    - `cargo release minor --workspace` to release a new minor for all crates (useful on egui updates)
        - note that you shouldn't use this to release a new crate (since it'll be updated from 0.1.0 to 0.2.0)
    - `cargo release -p <crate_name> <patch|minor|major>` to release a new version for a single crate
- Confirm that all listed crates have a updated changelog with matching versions
- Run the release command with --execute