diff --git a/CHANGELOG.md b/CHANGELOG.md index a6aa7dc..dc43eb1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ All notable changes to this project will be documented in this file. +## [0.3.9] - 2026-01-13 + +### 🚀 Features + +- added support for using mouse scroll wheel to change values ([#PR7](https://github.com/obsqrbtz/egui_knob/pull/7) by [maor1993](https://github.com/maor1993)) + ## [0.3.8] - 2026-01-12 ### 🚀 Features diff --git a/Cargo.toml b/Cargo.toml index ceec0d0..c7b7a0c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_knob" -version = "0.3.8" +version = "0.3.9" edition = "2024" authors = ["Daniel Dada"] description = "A simple knob widget for egui" diff --git a/README.md b/README.md index 32d6595..6e52c49 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,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.8" +egui_knob = "0.3.9" ``` ## Usage