From 456596115b2ed4abfd2108dc39afc2c1216014be Mon Sep 17 00:00:00 2001 From: Rob Parrett Date: Tue, 31 Dec 2024 07:07:02 -0700 Subject: [PATCH] Prepare for 0.10.1 release --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dee48fe..a72e88c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.10.1 + +* Fix typo by @rparrett in +* Replace "return" with "continue" in scroll_with_cursor by @copygirl in +* Fix missing `Default` impl on `TextInput` by @rparrett in + ## v0.10.0 * Upgrade to Bevy 0.15 by @rparrett in diff --git a/Cargo.toml b/Cargo.toml index 8cf8d0f..b8b64da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "bevy_simple_text_input" -version = "0.10.0" +version = "0.10.1" edition = "2021" license = "MIT OR Apache-2.0" description = "Bevy plugin for a simple single-line text input widget."