Skip to content

Commit

Permalink
Release 0.3.0 - Update to egui 0.31
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Feb 5, 2025
1 parent fee9dd5 commit 3c9ea2b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Changelog


## 0.3.0 - 2025-02-05 - Update to egui 0.31
#### PRs
* Update to egui 0.31 [#22](https://github.com/rerun-io/egui_table/pull/22) by [@emilk](https://github.com/emilk)
* Update MSRV to 1.81 [#21](https://github.com/rerun-io/egui_table/pull/21) by [@emilk](https://github.com/emilk)
* Fix ghost column when no sticky columns [#20](https://github.com/rerun-io/egui_table/pull/20) by [@EpixScripts](https://github.com/EpixScripts)


## 0.2.0 - 2024-12-17 - Update egui to 0.30
* Update MSRV to 1.80 [#17](https://github.com/rerun-io/egui_table/pull/17) by [@emilk](https://github.com/emilk)
* Update to egui 0.30 [#18](https://github.com/rerun-io/egui_table/pull/18) by [@emilk](https://github.com/emilk)
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,7 @@ checksum = "96a6ac251f4a2aca6b3f91340350eab87ae57c3f127ffeb585e92bd336717991"

[[package]]
name = "demo"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"eframe",
"egui",
Expand Down Expand Up @@ -582,7 +582,7 @@ dependencies = [

[[package]]
name = "egui_table"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"egui",
"serde",
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ members = ["egui_table", "demo"]
edition = "2021"
license = "MIT OR Apache-2.0"
rust-version = "1.81"
version = "0.2.0"
version = "0.3.0"


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


[workspace.dependencies]
egui_table = { version = "0.2.0", path = "egui_table", default-features = false }
egui_table = { version = "0.3.0", path = "egui_table", default-features = false }

document-features = " 0.2.10"
eframe = { version = "0.31.0", default-features = false }
Expand Down

0 comments on commit 3c9ea2b

Please sign in to comment.