Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 0.10.1 release #84

Merged
merged 1 commit into from
Dec 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## v0.10.1

* Fix typo by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/81>
* Replace "return" with "continue" in scroll_with_cursor by @copygirl in <https://github.com/rparrett/bevy_simple_text_input/pull/80>
* Fix missing `Default` impl on `TextInput` by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/83>

## v0.10.0

* Upgrade to Bevy 0.15 by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/77>
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down
Loading