2 Commits

Author SHA1 Message Date
3a3c2db4d3 bump version 2025-07-16 02:22:57 +03:00
427434c607 updated changelog and fixed readme 2025-07-16 02:22:18 +03:00
4 changed files with 13 additions and 3 deletions

View File

@@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
## [0.3.1] - 2025-07-15
### 🚀 Features
- Added background arc
### 🐛 Bug Fixes
- Sanitize NaNs
## [0.3.1] - 2025-07-15
### 🛠 Maintenance
- Bump egui version to 0.32

2
Cargo.lock generated
View File

@@ -825,7 +825,7 @@ dependencies = [
[[package]]
name = "egui_knob"
version = "0.3.2"
version = "0.3.3"
dependencies = [
"eframe",
"egui",

View File

@@ -1,6 +1,6 @@
[package]
name = "egui_knob"
version = "0.3.2"
version = "0.3.3"
edition = "2024"
description = "A simple knob widget for egui"
homepage = "https://github.com/obsqrbtz/egui_knob"

View File

@@ -21,7 +21,7 @@ To use the Knob widget in your project, add the following to your `Cargo.toml`:
```toml
[dependencies]
egui = "0.32"
egui_knob = "0.4.1"
egui_knob = "0.3.3"
```
## Usage example