Skip to content

Commit ff10790

Browse files
committed
Release 0.29.0
1 parent d0fad35 commit ff10790

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ This file is updated upon each release.
55
Changes since the last release can be found at <https://github.com/emilk/egui_plot/compare/latest...HEAD> or by running the `scripts/generate_changelog.py` script.
66

77

8+
## 0.29.0 - 2024-09-26
9+
* Update to egui 0.29 [#48](https://github.com/emilk/egui_plot/pull/48) by [@emilk](https://github.com/emilk)
10+
11+
812
## 0.28.1 - 2024-07-05
913
Nothing new
1014

Cargo.lock

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = ["egui_plot", "demo", "examples/*"]
77
edition = "2021"
88
license = "MIT OR Apache-2.0"
99
rust-version = "1.76"
10-
version = "0.28.1"
10+
version = "0.29.0"
1111

1212

1313
[profile.release]
@@ -19,7 +19,7 @@ opt-level = 2
1919

2020

2121
[workspace.dependencies]
22-
egui_plot = { version = "0.28.1", path = "egui_plot", default-features = false }
22+
egui_plot = { version = "0.29.0", path = "egui_plot", default-features = false }
2323

2424
ahash = { version = "0.8.11", default-features = false, features = [
2525
"no-rng", # we don't need DOS-protection, so we let users opt-in to it instead

RELEASES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ We don't update the MSRV in a patch release, unless we really, really need to.
5151
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.
5252

5353
* [ ] `git commit -m 'Release 0.x.0 - summary'`
54-
* [ ] `cargo publish`
54+
* [ ] `cargo publish -p egui_plot`
5555
* [ ] `git tag -a 0.x.0 -m 'Release 0.x.0 - summary'`
5656
* [ ] `git pull --tags ; git tag -d latest && git tag -a latest -m 'Latest release' && git push --tags origin latest --force ; git push --tags`
5757
* [ ] merge release PR or push to `main`

egui_plot/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ include = ["../LICENSE-APACHE", "../LICENSE-MIT", "**/*.rs", "Cargo.toml"]
1212
keywords = ["egui", "plot", "plotting"]
1313
license.workspace = true
1414
name = "egui_plot"
15-
readme = "README.md"
15+
readme = "../README.md"
1616
repository = "https://github.com/emilk/egui_plot"
1717
rust-version.workspace = true
1818
version.workspace = true

0 commit comments

Comments
 (0)