Skip to content

Commit

Permalink
rusty_engine 5.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
CleanCut committed Jun 18, 2022
1 parent 9f0eb1a commit f1f8152
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.1.0] - 2022-06-18

### Improved

- Fixed `CollisionPair::either_contains` to use `.contains` instead of `==`, contributed by [@etnt](https://github.com/etnt) in [#51](https://github.com/CleanCut/rusty_engine/pull/51)
Expand Down Expand Up @@ -265,7 +267,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.6...HEAD
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v5.1.0...HEAD
[5.1.0]: https://github.com/CleanCut/rusty_engine/compare/v5.0.6...v5.1.0
[5.0.6]: https://github.com/CleanCut/rusty_engine/compare/v5.0.5...v5.0.6
[5.0.5]: https://github.com/CleanCut/rusty_engine/compare/v5.0.4...v5.0.5
[5.0.4]: https://github.com/CleanCut/rusty_engine/compare/v5.0.3...v5.0.4
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.6"
version = "5.1.0"
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 @@ -58,7 +58,7 @@ Add `rusty_engine` as a dependency

```toml
# In your [dependencies] section of Cargo.toml
rusty_engine = "5.0.6"
rusty_engine = "5.1.0"
```

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.6"
rusty_engine = "5.1.0"
```
- 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.6"
rusty_engine = "5.1.0"
```

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

0 comments on commit f1f8152

Please sign in to comment.