Skip to content

Commit

Permalink
Prepare for 0.9.0 release (#69)
Browse files Browse the repository at this point in the history
* Prepare for 0.9.0 release

* Update changelog
  • Loading branch information
rparrett authored Aug 11, 2024
1 parent 5fb1d4e commit 999bb19
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## v0.9.0

* scroll into view by @robtfm in <https://github.com/rparrett/bevy_simple_text_input/pull/59>
* Allow typing into multiple input fields at once by @davi4046 in <https://github.com/rparrett/bevy_simple_text_input/pull/58>
* Minor code style tweaks by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/60>
* add a few navigation shortcuts by @robtfm in <https://github.com/rparrett/bevy_simple_text_input/pull/61>
* Make `create` system an observer by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/64>
* Add names to created entities by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/65>
* Dress up new docs related to text navigation by @rparrett in <https://github.com/rparrett/bevy_simple_text_input/pull/68>

## v0.8.0

* Define `TextInputSystem` system set by @andrewhickman in <https://github.com/rparrett/bevy_simple_text_input/pull/56>
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.8.0"
version = "0.9.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Bevy plugin for a simple single-line text input widget."
Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,18 @@ See [`examples/basic.rs`](https://github.com/rparrett/bevy_simple_text_input/blo

| `bevy_simple_text_input` | `bevy` |
| :-- | :-- |
| `0.8` | `0.14` |
| `0.8`-`0.9` | `0.14` |
| `0.4`-`0.7` | `0.13` |
| `0.3` | `0.12` |
| `0.1`-`0.2` | `0.11` |

## Contributing

Please feel free to open a PR, but keep in mind this project's goals. This is meant to be a simple single-line text widget.
Please feel free to open a PR!

The code should be simple enough for users to quickly understand and modify for their own purposes. There should be zero additional dependencies on other Bevy ecosystem crates.
Keep in mind that I am not necessarily trying to build an enterprise-grade text input, just something that is good enough to be useful in small projects.

The code should be simple enough for users to quickly understand and modify for their own purposes. Any new dependencies must not also depend on Bevy.

Please keep PRs small and scoped to a single feature or fix.

Expand Down

0 comments on commit 999bb19

Please sign in to comment.