Skip to content

Commit

Permalink
Update quick start guide & learning-code-examples to reference 0.15 i…
Browse files Browse the repository at this point in the history
…nstead of 0.14 (bevyengine#1916)

Co-authored-by: Carter Anderson <[email protected]>
  • Loading branch information
fallible-algebra and cart authored Dec 13, 2024
1 parent 48af8b2 commit b542fbe
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
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

0 comments on commit b542fbe

Please sign in to comment.