Skip to content

Commit

Permalink
Release 0.29.0
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Sep 26, 2024
1 parent d0fad35 commit ff10790
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ This file is updated upon each release.
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.


## 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

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down
2 changes: 1 addition & 1 deletion egui_plot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit ff10790

Please sign in to comment.