Skip to content

Commit ba6784f

Browse files
committed
Release 0.7.0
1 parent a83c6b6 commit ba6784f

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
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.7.0 - 2026-02-19
4+
* Fix `scroll_to_row` not taking the header into account [#44](https://github.com/rerun-io/egui_table/pull/44) by [@abey79](https://github.com/abey79)
5+
* Fix table placement within containers [#43](https://github.com/rerun-io/egui_table/pull/43) by [@agalakhov](https://github.com/agalakhov)
6+
37
## 0.6.0 - 2025-11-25
48
* Change return type to `Response` in `Table::show` [#36](https://github.com/rerun-io/egui_table/pull/36) by [@TihonovNV](https://github.com/TihonovNV)
59
* 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)

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.6.0"
744+
version = "0.7.0"
745745
dependencies = [
746746
"eframe",
747747
"egui",
@@ -975,7 +975,7 @@ dependencies = [
975975

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

Cargo.toml

Lines changed: 3 additions & 3 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.6.0"
10+
version = "0.7.0"
1111

1212

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

1616

1717
[workspace.dependencies]
18-
egui_table = { version = "0.6.0", path = "egui_table", default-features = false }
18+
egui_table = { version = "0.7.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 }
@@ -82,7 +82,7 @@ disallowed_methods = "warn" # See clippy.toml
8282
disallowed_names = "warn" # See clippy.toml
8383
disallowed_script_idents = "warn" # See clippy.toml
8484
disallowed_types = "warn" # See clippy.toml
85-
doc_include_without_cfg = "warn"
85+
doc_include_without_cfg = "warn"
8686
doc_link_with_quotes = "warn"
8787
doc_markdown = "warn"
8888
empty_enum = "warn"

0 commit comments

Comments
 (0)