diff --git a/CHANGELOG.md b/CHANGELOG.md index 553e011..df905c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ This file is updated upon each release. Changes since the last release can be found at or by running the `scripts/generate_changelog.py` script. +## 0.29.0 - 2024-09-26 +* Update to egui 0.29 [#48](https://github.com/emilk/egui_plot/pull/48) by [@emilk](https://github.com/emilk) + + ## 0.28.1 - 2024-07-05 Nothing new diff --git a/Cargo.lock b/Cargo.lock index 5e87253..1495a82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -826,7 +826,7 @@ dependencies = [ [[package]] name = "demo" -version = "0.28.1" +version = "0.29.0" dependencies = [ "eframe", "egui", @@ -1017,7 +1017,7 @@ dependencies = [ [[package]] name = "egui_plot" -version = "0.28.1" +version = "0.29.0" dependencies = [ "ahash", "document-features", diff --git a/Cargo.toml b/Cargo.toml index 5b34279..7d3995c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = ["egui_plot", "demo", "examples/*"] edition = "2021" license = "MIT OR Apache-2.0" rust-version = "1.76" -version = "0.28.1" +version = "0.29.0" [profile.release] @@ -19,7 +19,7 @@ opt-level = 2 [workspace.dependencies] -egui_plot = { version = "0.28.1", path = "egui_plot", default-features = false } +egui_plot = { version = "0.29.0", path = "egui_plot", default-features = false } ahash = { version = "0.8.11", default-features = false, features = [ "no-rng", # we don't need DOS-protection, so we let users opt-in to it instead diff --git a/RELEASES.md b/RELEASES.md index fb67af0..824cd72 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -51,7 +51,7 @@ We don't update the MSRV in a patch release, unless we really, really need to. I usually do this all on the `main` branch, but doing it in a release branch is also fine, as long as you remember to merge it into `main` later. * [ ] `git commit -m 'Release 0.x.0 - summary'` -* [ ] `cargo publish` +* [ ] `cargo publish -p egui_plot` * [ ] `git tag -a 0.x.0 -m 'Release 0.x.0 - summary'` * [ ] `git pull --tags ; git tag -d latest && git tag -a latest -m 'Latest release' && git push --tags origin latest --force ; git push --tags` * [ ] merge release PR or push to `main` diff --git a/egui_plot/Cargo.toml b/egui_plot/Cargo.toml index 89877aa..58e9e31 100644 --- a/egui_plot/Cargo.toml +++ b/egui_plot/Cargo.toml @@ -12,7 +12,7 @@ include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"] keywords = ["egui", "plot", "plotting"] license.workspace = true name = "egui_plot" -readme = "README.md" +readme = "../README.md" repository = "https://github.com/emilk/egui_plot" rust-version.workspace = true version.workspace = true