chore: bump egui version, closes #3

This commit is contained in:
2025-07-15 14:51:29 +03:00
parent 530ba584bc
commit 617851102b
4 changed files with 252 additions and 467 deletions

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## [0.3.1] - 2025-07-15
### 🛠 Maintenance
- Bump egui version to 0.32
## [0.3.0] - 2025-07-07 ## [0.3.0] - 2025-07-07
### 🚀 Features ### 🚀 Features

701
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
[package] [package]
name = "egui_knob" name = "egui_knob"
version = "0.3.0" version = "0.3.1"
edition = "2021" edition = "2024"
description = "A simple knob widget for egui" description = "A simple knob widget for egui"
homepage = "https://github.com/obsqrbtz/egui_knob" homepage = "https://github.com/obsqrbtz/egui_knob"
repository = "https://github.com/obsqrbtz/egui_knob" repository = "https://github.com/obsqrbtz/egui_knob"
@@ -19,7 +19,7 @@ name = "example_knob"
path = "examples/example_knob.rs" path = "examples/example_knob.rs"
[dependencies] [dependencies]
egui = "0.31" egui = "0.32"
[dev-dependencies] [dev-dependencies]
eframe = { version = "0.31.0", features = ["default_fonts"] } eframe = { version = "0.32.0", features = ["default_fonts"] }

View File

@@ -20,8 +20,8 @@ To use the Knob widget in your project, add the following to your `Cargo.toml`:
```toml ```toml
[dependencies] [dependencies]
egui = "0.31" egui = "0.32"
egui_knob = "0.3.0" egui_knob = "0.3.1"
``` ```
## Usage example ## Usage example