Skip to content

Commit

Permalink
Update book to Bevy 0.12 (#803)
Browse files Browse the repository at this point in the history
  • Loading branch information
alice-i-cecile authored Nov 4, 2023
1 parent 676db11 commit e9ca557
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/learn/book/getting-started/setup/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ version = "0.1.0"
edition = "2021" # this needs to be 2021, or you need to set "resolver=2"

[dependencies]
bevy = "0.11" # make sure this is the latest version
bevy = "0.12" # make sure this is the latest version
```

Make sure to use the latest `bevy` crate version ([![Crates.io](https://img.shields.io/crates/v/bevy.svg)](https://crates.io/crates/bevy)).
Expand Down Expand Up @@ -155,7 +155,7 @@ Bevy can be built just fine using default configuration on stable Rust. However

```toml
[dependencies]
bevy = { version = "0.11.0", features = ["dynamic_linking"] }
bevy = { version = "0.12.0", features = ["dynamic_linking"] }
```

NOTE: Remember to revert this before releasing your game! Otherwise you will need to include `libbevy_dylib` alongside your game if you want it to run. If you remove the "dynamic" feature, your game executable can run standalone.
Expand Down

0 comments on commit e9ca557

Please sign in to comment.