Skip to content

Commit

Permalink
Release 0.3.0 - for egui 0.23
Browse files Browse the repository at this point in the history
  • Loading branch information
emilk committed Sep 28, 2023
1 parent f093f06 commit cf8f702
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: default
toolchain: 1.69.0
toolchain: 1.70.0
override: true

- name: Install packages (Linux)
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.69.0
toolchain: 1.70.0
target: wasm32-unknown-unknown
override: true

Expand Down Expand Up @@ -128,6 +128,6 @@ jobs:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
rust-version: "1.69.0"
rust-version: "1.70.0"
log-level: warn
command: check
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# `egui_tiles` Changelog


## [Unreleased](https://github.com/rerun-io/rerun/compare/latest...HEAD)


## [0.3.0]](https://github.com/rerun-io/rerun/compare/0.2.0...0.3.0)
* Update to egui 0.23
* Better grid column-count heuristic
* Make drag preview style customizable


## [0.2.0]](https://github.com/rerun-io/rerun/compare/0.1.0...0.2.0) - Invisible tiles - 2023-07-06
* Add support for invisible tiles
* `PartialEq` for `Tiles` now ignores internal state
Expand Down
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ license = "MIT OR Apache-2.0"
name = "egui_tiles"
readme = "README.md"
repository = "https://github.com/rerun-io/egui_tiles"
rust-version = "1.69"
version = "0.2.0"
rust-version = "1.70"
version = "0.3.0"

[package.metadata.docs.rs]
all-features = true
Expand All @@ -25,15 +25,15 @@ ahash = { version = "0.8.1", default-features = false, features = [
"no-rng", # we don't need DOS-protection for what we use ahash for
"std",
] }
egui = { version = "0.22", default-features = false }
egui = { version = "0.23", default-features = false }
itertools = "0.11"
log = { version = "0.4", features = ["std"] }
serde = { version = "1", features = ["derive"] }


# For the example:
[dev-dependencies]
eframe = { version = "0.22", default-features = false, features = [
eframe = { version = "0.23", default-features = false, features = [
"default_fonts",
"glow",
"persistence",
Expand Down
2 changes: 1 addition & 1 deletion clippy.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
msrv = "1.69"
msrv = "1.70"

allow-unwrap-in-tests = true

Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
# to the user in the error, instead of "error: invalid channel name '[toolchain]'".

[toolchain]
channel = "1.69.0"
channel = "1.70.0"
components = ["rustfmt", "clippy"]
targets = ["wasm32-unknown-unknown"]

0 comments on commit cf8f702

Please sign in to comment.