Skip to content

Commit

Permalink
Release 0.31.0
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmerlin committed Feb 5, 2025
1 parent 791ce21 commit 3c5516f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to the `egui_plot` integration will be noted in this file.
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.31.0 - 2025-02-05

Full diff at https://github.com/emilk/egui_plot/compare/0.30.0..HEAD

#### PRs
* Allow borrowing plot points via `PlotPoints::Borrowed` [#64](https://github.com/emilk/egui_plot/pull/64) by [@mo8it](https://github.com/mo8it) and [@bircni](https://github.com/bircni)
* Add `insertion_order` and `color_conflict_handling` to `Legend` [#65](https://github.com/emilk/egui_plot/pull/65) by [@Zoxc](https://github.com/Zoxc) and [@bircni](https://github.com/bircni)
* Allow Plot::link_cursor to accept `impl Into<Vec2b>` [#66](https://github.com/emilk/egui_plot/pull/66) by [@jetuk](https://github.com/jetuk)
* Axis: fix label thickness [#68](https://github.com/emilk/egui_plot/pull/68) by [@jordens](https://github.com/jordens)
* Update to egui 0.31.0 [#72](https://github.com/emilk/egui_plot/pull/72) by [@Wumpf](https://github.com/Wumpf)
* Update MSRV to Rust 1.81 [#69](https://github.com/emilk/egui_plot/pull/69) by [@emilk](https://github.com/emilk)

## 0.30.0 - 2024-12-17

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -884,7 +884,7 @@ dependencies = [

[[package]]
name = "demo"
version = "0.30.0"
version = "0.31.0"
dependencies = [
"eframe",
"egui",
Expand Down Expand Up @@ -1114,7 +1114,7 @@ dependencies = [

[[package]]
name = "egui_plot"
version = "0.30.0"
version = "0.31.0"
dependencies = [
"ahash",
"document-features",
Expand Down
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.81"
version = "0.30.0"
version = "0.31.0"


[profile.release]
Expand All @@ -19,7 +19,7 @@ opt-level = 2


[workspace.dependencies]
egui_plot = { version = "0.30.0", path = "egui_plot", default-features = false }
egui_plot = { version = "0.31.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

0 comments on commit 3c5516f

Please sign in to comment.