Skip to content

Commit 66cb8ec

Browse files
authored
[meta] 5.6 -> 5.6.0 (#191)
1 parent 6c430d7 commit 66cb8ec

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Follow instructions for building raylib for your platform [here](https://github.
5050

5151
```toml
5252
[dependencies]
53-
raylib = { version = "5.6" }
53+
raylib = { version = "5.6.0" }
5454
```
5555

5656
2. Start coding!

raylib-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "raylib-sys"
3-
version = "5.6"
3+
version = "5.6.0"
44
authors = ["raylib-rs team <https://github.com/raylib-rs/raylib-rs>"]
55
license = "Zlib"
66
description = "Raw FFI bindings for Raylib"

raylib-test/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ readme = "../README.md"
88
repository = "https://github.com/raylib-rs/raylib-rs"
99

1010
[dependencies]
11-
raylib = { version = "5.6", path = "../raylib" }
12-
raylib_sys = { version = "5.6", path = "../raylib-sys" }
11+
raylib = { version = "5.6.0", path = "../raylib" }
12+
raylib_sys = { version = "5.6.0", path = "../raylib-sys" }
1313
lazy_static = "1.2.0"
1414
colored = "1.9.1"
1515

raylib/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "raylib"
3-
version = "5.6"
3+
version = "5.6.0"
44
authors = ["raylib-rs team <https://github.com/raylib-rs/raylib-rs>"]
55
license = "Zlib"
66
readme = "../README.md"
@@ -13,7 +13,7 @@ edition = "2021"
1313
autoexamples = false
1414

1515
[dependencies]
16-
raylib-sys = { version = "5.6", path = "../raylib-sys", default-features = false }
16+
raylib-sys = { version = "5.6.0", path = "../raylib-sys", default-features = false }
1717
serde = { version = "1.0.125", features = ["derive"], optional = true }
1818
serde_json = { version = "1.0.64", optional = true }
1919
imgui = { version = "0.12.0", optional = true, features = [] }

samples/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "raylib-examples"
3-
version = "5.6"
3+
version = "5.6.0"
44
authors = ["raylib-rs team <https://github.com/raylib-rs/raylib-rs>"]
55
edition = "2021"
66
license = "Zlib"
@@ -9,7 +9,7 @@ repository = "https://github.com/raylib-rs/raylib-rs"
99

1010

1111
[dependencies]
12-
raylib = { path = "../raylib", version = "5.6" }
12+
raylib = { path = "../raylib", version = "5.6.0" }
1313
structopt = "0.2"
1414
specs-derive = "0.4.1"
1515
rand = "0.8"

0 commit comments

Comments
 (0)