Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions content/learn/quick-start/getting-started/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ You can also speed up compile times by following the ["fast compiles"] section.
# use the latest Bevy release
git checkout latest
# or a specific version
git checkout v0.14.0
git checkout v0.15.0
```

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

```toml
[dependencies]
bevy = "0.14" # make sure this is the latest version
bevy = "0.15" # 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)).
2 changes: 1 addition & 1 deletion content/learn/quick-start/getting-started/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ cargo add bevy
edition = "2021" # this needs to be 2021, or you need to set "resolver=2"

[dependencies]
bevy = "0.14" # make sure this is the latest version
bevy = "0.15" # make sure this is the latest version
```
</details>

Expand Down
2 changes: 1 addition & 1 deletion learning-code-examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ publish = false
autoexamples = false

[dependencies]
bevy = "0.14.0"
bevy = "0.15.0"

[lints]
workspace = true
Expand Down
Loading