Skip to content

Commit

Permalink
Update bevy version on learn chapters (#1083)
Browse files Browse the repository at this point in the history
Co-authored-by: Emi <emanuel.boehm@gmail.com>
  • Loading branch information
EmiOnGit and Emi committed Mar 8, 2024
1 parent f5cc285 commit 284bc43
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions content/learn/quick-start/getting-started/_index.md
Expand Up @@ -38,7 +38,7 @@ Note: depending on your platform, you may have to [install additional dependenci
# use the latest Bevy release
git checkout latest
# or a specific version
git checkout v0.11.0
git checkout v0.13.0
```

4. Try the examples in the [examples folder](https://github.com/bevyengine/bevy/tree/latest/examples#examples)
Expand All @@ -61,7 +61,7 @@ Alternatively, you can manually add it to your project's Cargo.toml like this:

```toml
[dependencies]
bevy = "0.12" # make sure this is the latest version
bevy = "0.13" # 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)).
4 changes: 2 additions & 2 deletions content/learn/quick-start/getting-started/setup.md
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.12" # make sure this is the latest version
bevy = "0.13" # 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.12.0", features = ["dynamic_linking"] }
bevy = { version = "0.13.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
4 changes: 2 additions & 2 deletions content/learn/quick-start/plugin-development.md
Expand Up @@ -84,8 +84,8 @@ Indicating which version of your plugin works with which version of Bevy can be
```markdown
| bevy | bevy_awesome_plugin |
|-------|---------------------|
| 0.12 | 0.3 |
| 0.11 | 0.1 |
| 0.13 | 0.3 |
| 0.12 | 0.1 |
```

## Main Branch Tracking
Expand Down

0 comments on commit 284bc43

Please sign in to comment.