File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
3
4
+ ## 0.3.0 - 2025-02-05 - Update to egui 0.31
5
+ #### PRs
6
+ * Update to egui 0.31 [ #22 ] ( https://github.com/rerun-io/egui_table/pull/22 ) by [ @emilk ] ( https://github.com/emilk )
7
+ * Update MSRV to 1.81 [ #21 ] ( https://github.com/rerun-io/egui_table/pull/21 ) by [ @emilk ] ( https://github.com/emilk )
8
+ * Fix ghost column when no sticky columns [ #20 ] ( https://github.com/rerun-io/egui_table/pull/20 ) by [ @EpixScripts ] ( https://github.com/EpixScripts )
9
+
10
+
4
11
## 0.2.0 - 2024-12-17 - Update egui to 0.30
5
12
* Update MSRV to 1.80 [ #17 ] ( https://github.com/rerun-io/egui_table/pull/17 ) by [ @emilk ] ( https://github.com/emilk )
6
13
* Update to egui 0.30 [ #18 ] ( https://github.com/rerun-io/egui_table/pull/18 ) by [ @emilk ] ( https://github.com/emilk )
Original file line number Diff line number Diff line change @@ -395,7 +395,7 @@ checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991"
395
395
396
396
[[package ]]
397
397
name = " demo"
398
- version = " 0.2 .0"
398
+ version = " 0.3 .0"
399
399
dependencies = [
400
400
" eframe" ,
401
401
" egui" ,
@@ -582,7 +582,7 @@ dependencies = [
582
582
583
583
[[package ]]
584
584
name = " egui_table"
585
- version = " 0.2 .0"
585
+ version = " 0.3 .0"
586
586
dependencies = [
587
587
" egui" ,
588
588
" serde" ,
Original file line number Diff line number Diff line change @@ -7,15 +7,15 @@ members = ["egui_table", "demo"]
7
7
edition = " 2021"
8
8
license = " MIT OR Apache-2.0"
9
9
rust-version = " 1.81"
10
- version = " 0.2 .0"
10
+ version = " 0.3 .0"
11
11
12
12
13
13
[profile .release ]
14
14
opt-level = 2 # fast and small wasm
15
15
16
16
17
17
[workspace .dependencies ]
18
- egui_table = { version = " 0.2 .0" , path = " egui_table" , default-features = false }
18
+ egui_table = { version = " 0.3 .0" , path = " egui_table" , default-features = false }
19
19
20
20
document-features = " 0.2.10"
21
21
eframe = { version = " 0.31.0" , default-features = false }
You can’t perform that action at this time.
0 commit comments