Skip to content

Commit

Permalink
Prepare for release (#36)
Browse files Browse the repository at this point in the history
  • Loading branch information
rparrett committed Feb 27, 2024
1 parent 0614df4 commit 8bdf8ca
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## v0.5.0

* Prepare for release by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/36>
* Initialize cursor position properly when spawning by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/35>
* Allow `&str` to be passed in `with_value` builder method by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/34>
* Add a setting to control behavior when enter is pressed by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/33>
* Make example colors consistent by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/30>
* Allow text input value to changed programmatically by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/26>
* Don't show cursor if input is spawned in an inactive state by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/29>
* Reflect all the things by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/24>
* Add cursor timer reset on input by @chompaa in <https://github.com/rparrett/bevy_simple_text_input/pull/20>
* Add additional contributing guideline to README by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/22>
* Fix names of private `blink_cursor` and `show_hide_cursor` systems being swapped by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/21>

## 0.4.0

* Upgrade to Bevy 0.13 and prepare for Release by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/19>
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.4.0"
version = "0.5.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Bevy plugin for a simple single-line text input widget."
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ See [`examples/basic.rs`](https://github.com/rparrett/bevy_simple_text_input/blo

| `bevy_simple_text_input` | `bevy` |
| :-- | :-- |
| `0.4.0` | `0.13` |
| `0.4`-`0.5` | `0.13` |
| `0.3.1` | `0.12` |
| `0.1`-`0.2` | `0.11` |

Expand Down

0 comments on commit 8bdf8ca

Please sign in to comment.