chore: bump version

This commit is contained in:
2026-01-23 11:00:51 +03:00
parent a637ff4bca
commit fa7dd9e181
4 changed files with 628 additions and 538 deletions

View File

@@ -2,6 +2,12 @@
All notable changes to this project will be documented in this file.
## [0.3.10] - 2026-01-23
### 🚀 Features
- added support for logarithmic scaling ([#PR9](https://github.com/obsqrbtz/egui_knob/pull/9) by [bratorange](https://github.com/bratorange))
## [0.3.9] - 2026-01-13
### 🚀 Features

1156
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[package]
name = "egui_knob"
version = "0.3.9"
version = "0.3.10"
edition = "2024"
authors = ["Daniel Dada"]
description = "A simple knob widget for egui"

View File

@@ -28,7 +28,7 @@ To use the Knob widget in your project, add the following to your `Cargo.toml`:
[dependencies]
egui = "0.33"
eframe = "0.33"
egui_knob = "0.3.9"
egui_knob = "0.3.10"
```
## Usage