Skip to content

Commit 21ab27f

Browse files
committed
rusty_engine 7.0.0
1 parent 972c609 commit 21ab27f

6 files changed

Lines changed: 9 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<!-- next-header -->
22
## [Unreleased] - ReleaseDate
33

4+
## [7.0.0] - 2026-02-08
5+
46
### Breaking changes
57

68
- The `KeyCode` enum (passed through from Bevy) has had many variants renamed. For example, `KeyCode::Key1` is now `KeyCode::Digit1`, `KeyCode::A` is now `KeyCode::KeyA`, and `KeyCode::Right` is now `KeyCode::ArrowRight`. Please refer to Bevy's [`KeyCode` documentation](https://docs.rs/bevy/0.18.0/bevy/input/keyboard/enum.KeyCode.html) for the full list of variants and their new names.
@@ -341,7 +343,8 @@ specifying a path to a sound file relative to `assets/audio`.
341343

342344
[Bevy]: https://bevyengine.org
343345
<!-- next-url -->
344-
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v6.0.0...HEAD
346+
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v7.0.0...HEAD
347+
[7.0.0]: https://github.com/CleanCut/rusty_engine/compare/v6.0.0...v7.0.0
345348
[6.0.0]: https://github.com/CleanCut/rusty_engine/compare/v5.2.1...v6.0.0
346349
[5.2.1]: https://github.com/CleanCut/rusty_engine/compare/v5.2.0...v5.2.1
347350
[5.2.0]: https://github.com/CleanCut/rusty_engine/compare/v5.1.1...v5.2.0

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rusty_engine"
3-
version = "6.0.0"
3+
version = "7.0.0"
44
description = "Learn Rust with a simple, cross-platform, 2D game engine."
55
edition = "2024"
66
homepage = "https://github.com/CleanCut/rusty_engine"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Add `rusty_engine` as a dependency
5858

5959
```toml
6060
# In your [dependencies] section of Cargo.toml
61-
rusty_engine = "6.0.0"
61+
rusty_engine = "7.0.0"
6262
```
6363

6464
Write your game!

tutorial/src/02-quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
- Create a new Rust project and run `cargo add rusty_engine` to add Rusty Engine as a dependency (see the [Configuration](05-config.md) page for more details). Your `Cargo.toml` file should end up with a line similar to this:
44
```toml
55
# In your [dependencies] section of Cargo.toml
6-
rusty_engine = "6.0.0"
6+
rusty_engine = "7.0.0"
77
```
88
- Download the Asset Pack to your project (see the [Asset Pack](10-assets.md) page for more details).
99
```shell

tutorial/src/05-config.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
```toml
77
# In your [dependencies] section of Cargo.toml
8-
rusty_engine = "6.0.0"
8+
rusty_engine = "7.0.0"
99
```
1010

1111
### (Optional) Make `dev` profile act like `release`

0 commit comments

Comments
 (0)