Skip to content

Commit 3c9ea2b

Browse files
committed
Release 0.3.0 - Update to egui 0.31
1 parent fee9dd5 commit 3c9ea2b

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
# Changelog
22

33

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+
411
## 0.2.0 - 2024-12-17 - Update egui to 0.30
512
* Update MSRV to 1.80 [#17](https://github.com/rerun-io/egui_table/pull/17) by [@emilk](https://github.com/emilk)
613
* Update to egui 0.30 [#18](https://github.com/rerun-io/egui_table/pull/18) by [@emilk](https://github.com/emilk)

Cargo.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991"
395395

396396
[[package]]
397397
name = "demo"
398-
version = "0.2.0"
398+
version = "0.3.0"
399399
dependencies = [
400400
"eframe",
401401
"egui",
@@ -582,7 +582,7 @@ dependencies = [
582582

583583
[[package]]
584584
name = "egui_table"
585-
version = "0.2.0"
585+
version = "0.3.0"
586586
dependencies = [
587587
"egui",
588588
"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 = "2021"
88
license = "MIT OR Apache-2.0"
99
rust-version = "1.81"
10-
version = "0.2.0"
10+
version = "0.3.0"
1111

1212

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

1616

1717
[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 }
1919

2020
document-features = " 0.2.10"
2121
eframe = { version = "0.31.0", default-features = false }

0 commit comments

Comments
 (0)