2 Commits
0.3.0 ... 0.3.1

Author SHA1 Message Date
617851102b chore: bump egui version, closes #3 2025-07-15 14:51:29 +03:00
530ba584bc chore: bump version 2025-07-07 16:49:12 +03:00
4 changed files with 258 additions and 469 deletions

View File

@@ -2,11 +2,21 @@
All notable changes to this project will be documented in this file.
## [Unreleased]
## [0.3.1] - 2025-07-15
### 🛠 Maintenance
- Bump egui version to 0.32
## [0.3.0] - 2025-07-07
### 🚀 Features
- Add configurable sweep range with `with_sweep_range()` method
- Add configurable sweep range with `with_sweep_range()` method ([PR#2](https://github.com/obsqrbtz/egui_knob/pull/2) by [sacha-renault](https://github.com/sacha-renault))
## [0.2.0] - 2025-05-12
- Bump egui and eframe versions ([PR#1](https://github.com/obsqrbtz/egui_knob/pull/1) by [chloebrett](https://github.com/chloebrett))
## [0.1.9] - 2025-02-04

701
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,7 +1,7 @@
[package]
name = "egui_knob"
version = "0.2.0"
edition = "2021"
version = "0.3.1"
edition = "2024"
description = "A simple knob widget for egui"
homepage = "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"
[dependencies]
egui = "0.31"
egui = "0.32"
[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
[dependencies]
egui = "0.31"
egui_knob = "0.2.0"
egui = "0.32"
egui_knob = "0.3.1"
```
## Usage example