Skip to content

Commit 2f88cd6

Browse files
committed
rusty_engine 5.2.0
1 parent 0f97a1c commit 2f88cd6

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

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+
## [5.2.0] - 2022-09-13
5+
46
## Added
57

68
- Added `KeyboardStateChain` and `MouseStateChain` to provide a functional interface for dealing with user input. Call `.chain()` on `KeyboardState` or `MouseState` to access them. These new structs have methods with the same names as in their `Chain`-less variants which accept closures to perform the logic, and can be chained. Contributed by [@just-do-halee](https://github.com/just-do-halee) in [#55].
@@ -284,7 +286,8 @@ specifying a path to a sound file relative to `assets/audio`.
284286

285287
[Bevy]: https://bevyengine.org
286288
<!-- next-url -->
287-
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v5.1.1...HEAD
289+
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v5.2.0...HEAD
290+
[5.2.0]: https://github.com/CleanCut/rusty_engine/compare/v5.1.1...v5.2.0
288291
[5.1.1]: https://github.com/CleanCut/rusty_engine/compare/v5.1.0...v5.1.1
289292
[5.1.0]: https://github.com/CleanCut/rusty_engine/compare/v5.0.6...v5.1.0
290293
[5.0.6]: https://github.com/CleanCut/rusty_engine/compare/v5.0.5...v5.0.6

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 = "5.1.1"
3+
version = "5.2.0"
44
description = "Learn Rust with a simple, cross-platform, 2D game engine."
55
edition = "2021"
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 = "5.1.1"
61+
rusty_engine = "5.2.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 add `rusty_engine` as a dependency (see the [Configuration](05-config.md) page for more details)
44
```toml
55
# In your [dependencies] section of Cargo.toml
6-
rusty_engine = "5.1.1"
6+
rusty_engine = "5.2.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 = "5.1.1"
8+
rusty_engine = "5.2.0"
99
```
1010

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

0 commit comments

Comments
 (0)