Skip to content

Commit 53e221a

Browse files
committedSep 10, 2021
rusty_engine 2.0.0
1 parent 1f7758e commit 53e221a

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed
 

‎CHANGELOG.md

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

4+
## [2.0.0] - 2021-09-09
5+
46
### BREAKING CHANGES
57

68
- Renamed `GameState.cursor_moved_events` to `GameState.mouse_location_events`
@@ -108,7 +110,8 @@
108110

109111
[Bevy]: https://bevyengine.org
110112
<!-- next-url -->
111-
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v1.1.4...HEAD
113+
[Unreleased]: https://github.com/CleanCut/rusty_engine/compare/v2.0.0...HEAD
114+
[2.0.0]: https://github.com/CleanCut/rusty_engine/compare/v1.1.4...v2.0.0
112115
[1.1.4]: https://github.com/CleanCut/rusty_engine/compare/v1.1.3...v1.1.4
113116
[1.1.3]: https://github.com/CleanCut/rusty_engine/compare/v1.1.2...v1.1.3
114117
[1.1.2]: https://github.com/CleanCut/rusty_engine/compare/v1.1.1...v1.1.2

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rusty_engine"
3-
version = "1.1.4"
3+
version = "2.0.0"
44
authors = [ "Nathan Stocks <nathan@agileperception.com>" ]
55
description = "Learn Rust with a simple, cross-platform, 2D game engine."
66
edition = "2018"

‎README.md

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

4747
```toml
4848
# In your [dependencies] section of Cargo.toml
49-
rusty_engine = "1.1.4"
49+
rusty_engine = "2.0.0"
5050
```
5151

5252
Write your game!

0 commit comments

Comments
 (0)
Please sign in to comment.