Skip to content

Commit b542fbe

Browse files
Update quick start guide & learning-code-examples to reference 0.15 instead of 0.14 (#1916)
Co-authored-by: Carter Anderson <[email protected]>
1 parent 48af8b2 commit b542fbe

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

content/learn/quick-start/getting-started/_index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ You can also speed up compile times by following the ["fast compiles"] section.
4040
# use the latest Bevy release
4141
git checkout latest
4242
# or a specific version
43-
git checkout v0.14.0
43+
git checkout v0.15.0
4444
```
4545

4646
4. Try the examples in the [examples folder](https://github.com/bevyengine/bevy/tree/latest/examples#examples)
@@ -63,7 +63,7 @@ Alternatively, you can manually add it to your project's Cargo.toml like this:
6363
6464
```toml
6565
[dependencies]
66-
bevy = "0.14" # make sure this is the latest version
66+
bevy = "0.15" # make sure this is the latest version
6767
```
6868
6969
Make sure to use the latest `bevy` crate version ([![Crates.io](https://img.shields.io/crates/v/bevy.svg)](https://crates.io/crates/bevy)).

content/learn/quick-start/getting-started/setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ cargo add bevy
124124
edition = "2021" # this needs to be 2021, or you need to set "resolver=2"
125125

126126
[dependencies]
127-
bevy = "0.14" # make sure this is the latest version
127+
bevy = "0.15" # make sure this is the latest version
128128
```
129129
</details>
130130

learning-code-examples/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ publish = false
55
autoexamples = false
66

77
[dependencies]
8-
bevy = "0.14.0"
8+
bevy = "0.15.0"
99

1010
[lints]
1111
workspace = true

0 commit comments

Comments
 (0)