Skip to content

Commit 015f345

Browse files
committed
rusty_engine 5.0.0
1 parent 75fc4e4 commit 015f345

File tree

5 files changed

+8
-5
lines changed

5 files changed

+8
-5
lines changed

Diff for: CHANGELOG.md

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

4+
## [5.0.0] - 2022-03-12
5+
46
### BREAKING CHANGES
57

68
- Logic functions no longer return a `bool` to simplify the learning curve. If you want logic functions to run conditionally, instead track your state in your `GameState` and use it to exit early from your logic function.
@@ -197,7 +199,8 @@ specifying a path to a sound file relative to `assets/audio`.
197199

198200
[Bevy]: https://bevyengine.org
199201
<!-- next-url -->
200-
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v4.0.0...HEAD
202+
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v5.0.0...HEAD
203+
[5.0.0]: https://github.com/CleanCut/rusty_engine/compare/v4.0.0...v5.0.0
201204
[4.0.0]: https://github.com/CleanCut/rusty_engine/compare/v3.0.0...v4.0.0
202205
[3.0.0]: https://github.com/CleanCut/rusty_engine/compare/v2.0.1...v3.0.0
203206
[2.0.1]: https://github.com/CleanCut/rusty_engine/compare/v2.0.0...v2.0.1

Diff for: Cargo.toml

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

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ Add `rusty_engine` as a dependency
5656

5757
```toml
5858
# In your [dependencies] section of Cargo.toml
59-
rusty_engine = "4.0.0"
59+
rusty_engine = "5.0.0"
6060
```
6161

6262
Write your game!

Diff for: tutorial/src/02-quick-start.md

+1-1
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 = "4.0.0"
6+
rusty_engine = "5.0.0"
77
```
88
- Download the Asset Pack to your project (see the [Asset Pack](10-assets.md) page for more details).
99
```shell

Diff for: tutorial/src/05-config.md

+1-1
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 = "4.0.0"
8+
rusty_engine = "5.0.0"
99
```
1010

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

0 commit comments

Comments
 (0)