Skip to content

Commit

Permalink
rusty_engine 5.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
CleanCut committed Apr 29, 2022
1 parent 4a40e64 commit 9046bfa
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<!-- next-header -->
## [Unreleased] - ReleaseDate

## [5.0.3] - 2022-04-29

### New

- The `level_creator` example can be installed globally with `cargo install rusty_engine --example level_creator` and run in the root of your own project with `level_creator`.
Expand Down Expand Up @@ -226,7 +228,8 @@ specifying a path to a sound file relative to `assets/audio`.

[Bevy]: https://bevyengine.org
<!-- next-url -->
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v5.0.2...HEAD
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v5.0.3...HEAD
[5.0.3]: https://github.com/CleanCut/rusty_engine/compare/v5.0.2...v5.0.3
[5.0.2]: https://github.com/CleanCut/rusty_engine/compare/v5.0.1...v5.0.2
[5.0.1]: https://github.com/CleanCut/rusty_engine/compare/v5.0.0...v5.0.1
[5.0.0]: https://github.com/CleanCut/rusty_engine/compare/v4.0.0...v5.0.0
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 = "rusty_engine"
version = "5.0.3-alpha.0"
version = "5.0.3"
description = "Learn Rust with a simple, cross-platform, 2D game engine."
edition = "2021"
homepage = "https://github.com/CleanCut/rusty_engine"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Add `rusty_engine` as a dependency

```toml
# In your [dependencies] section of Cargo.toml
rusty_engine = "5.0.2"
rusty_engine = "5.0.3"
```

Write your game!
Expand Down
2 changes: 1 addition & 1 deletion tutorial/src/02-quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
- Create a new Rust project and add `rusty_engine` as a dependency (see the [Configuration](05-config.md) page for more details)
```toml
# In your [dependencies] section of Cargo.toml
rusty_engine = "5.0.2"
rusty_engine = "5.0.3"
```
- Download the Asset Pack to your project (see the [Asset Pack](10-assets.md) page for more details).
```shell
Expand Down
2 changes: 1 addition & 1 deletion tutorial/src/05-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

```toml
# In your [dependencies] section of Cargo.toml
rusty_engine = "5.0.2"
rusty_engine = "5.0.3"
```

### (Optional) Make `dev` profile act like `release`
Expand Down

0 comments on commit 9046bfa

Please sign in to comment.