From 530ba584bcf2d1f8bab60cbfac7117522372ef93 Mon Sep 17 00:00:00 2001 From: Daniel Dada Date: Mon, 7 Jul 2025 16:49:12 +0300 Subject: [PATCH] chore: bump version --- CHANGELOG.md | 8 ++++++-- Cargo.lock | 2 +- Cargo.toml | 2 +- README.md | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d0859f..b7e702f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,11 +2,15 @@ All notable changes to this project will be documented in this file. -## [Unreleased] +## [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 diff --git a/Cargo.lock b/Cargo.lock index 8656bef..076d797 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -898,7 +898,7 @@ dependencies = [ [[package]] name = "egui_knob" -version = "0.2.0" +version = "0.3.0" dependencies = [ "eframe", "egui", diff --git a/Cargo.toml b/Cargo.toml index 918d24a..56f7d71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "egui_knob" -version = "0.2.0" +version = "0.3.0" edition = "2021" description = "A simple knob widget for egui" homepage = "https://github.com/obsqrbtz/egui_knob" diff --git a/README.md b/README.md index d68132c..e6b5449 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ 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_knob = "0.3.0" ``` ## Usage example