Skip to content

Commit 35abc9b

Browse files
committed
Release 0.6.0
1 parent 108c543 commit 35abc9b

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 0.6.0 - 2025-11-25
4+
* Change return type to `Response` in `Table::show` [#36](https://github.com/rerun-io/egui_table/pull/36) by [@TihonovNV](https://github.com/TihonovNV)
5+
* Add `row_ui` to allow interacting with the whole row at once [#38](https://github.com/rerun-io/egui_table/pull/38) by [@lucasmerlin](https://github.com/lucasmerlin)
6+
37

48
## 0.5.0 - 2025-10-10
59
* Update msrv to 1.88 [#32](https://github.com/rerun-io/egui_table/pull/32) by [@lucasmerlin](https://github.com/lucasmerlin)

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ checksum = "f27ae1dd37df86211c42e150270f82743308803d90a6f6e6651cd730d5e1732f"
741741

742742
[[package]]
743743
name = "demo"
744-
version = "0.5.0"
744+
version = "0.6.0"
745745
dependencies = [
746746
"eframe",
747747
"egui",
@@ -975,7 +975,7 @@ dependencies = [
975975

976976
[[package]]
977977
name = "egui_table"
978-
version = "0.5.0"
978+
version = "0.6.0"
979979
dependencies = [
980980
"egui",
981981
"serde",

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ members = ["egui_table", "demo"]
77
edition = "2024"
88
license = "MIT OR Apache-2.0"
99
rust-version = "1.88"
10-
version = "0.5.0"
10+
version = "0.6.0"
1111

1212

1313
[profile.release]
1414
opt-level = 2 # fast and small wasm
1515

1616

1717
[workspace.dependencies]
18-
egui_table = { version = "0.5.0", path = "egui_table", default-features = false }
18+
egui_table = { version = "0.6.0", path = "egui_table", default-features = false }
1919

2020
eframe = { version = "0.33.0", default-features = false }
2121
egui = { version = "0.33.0", default-features = false }

0 commit comments

Comments
 (0)