Skip to content

Commit 6d34dad

Browse files
committed
Update crate version: 0.1.2 -> 0.1.3
1 parent 0de167c commit 6d34dad

File tree

7 files changed

+19
-19
lines changed

7 files changed

+19
-19
lines changed

godot-bindings/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-bindings"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"

godot-cell/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-cell"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"

godot-codegen/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-codegen"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"
@@ -20,7 +20,7 @@ api-custom = ["godot-bindings/api-custom"]
2020
experimental-godot-api = []
2121

2222
[dependencies]
23-
godot-bindings = { path = "../godot-bindings", version = "=0.1.2" }
23+
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" }
2424

2525
heck = "0.4"
2626
nanoserde = "0.1.35"
@@ -34,7 +34,7 @@ quote = "1.0.29"
3434
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode-bool", "unicode-gencat"] }
3535

3636
[build-dependencies]
37-
godot-bindings = { path = "../godot-bindings", version = "=0.1.2" } # emit_godot_version_cfg
37+
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" } # emit_godot_version_cfg
3838

3939
# https://docs.rs/about/metadata
4040
[package.metadata.docs.rs]

godot-core/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-core"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"
@@ -44,16 +44,16 @@ api-4-2-2 = ["godot-ffi/api-4-2-2"]
4444
# ]]
4545

4646
[dependencies]
47-
godot-ffi = { path = "../godot-ffi", version = "=0.1.2" }
47+
godot-ffi = { path = "../godot-ffi", version = "=0.1.3" }
4848

4949
# See https://docs.rs/glam/latest/glam/index.html#feature-gates
5050
glam = { version = "0.27", features = ["debug-glam-assert"] }
5151
serde = { version = "1", features = ["derive"], optional = true }
52-
godot-cell = { path = "../godot-cell", version = "=0.1.2" }
52+
godot-cell = { path = "../godot-cell", version = "=0.1.3" }
5353

5454
[build-dependencies]
55-
godot-bindings = { path = "../godot-bindings", version = "=0.1.2" }
56-
godot-codegen = { path = "../godot-codegen", version = "=0.1.2" }
55+
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" }
56+
godot-codegen = { path = "../godot-codegen", version = "=0.1.3" }
5757

5858
# Reverse dev dependencies so doctests can use `godot::` prefix.
5959
[dev-dependencies]

godot-ffi/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-ffi"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"
@@ -49,8 +49,8 @@ libc = "0.2.153"
4949
gensym = "0.1.1"
5050

5151
[build-dependencies]
52-
godot-bindings = { path = "../godot-bindings", version = "=0.1.2" }
53-
godot-codegen = { path = "../godot-codegen", version = "=0.1.2" }
52+
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" }
53+
godot-codegen = { path = "../godot-codegen", version = "=0.1.3" }
5454

5555
# https://docs.rs/about/metadata
5656
[package.metadata.docs.rs]

godot-macros/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot-macros"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"
@@ -24,7 +24,7 @@ quote = "1.0.29"
2424
venial = "0.6"
2525

2626
[build-dependencies]
27-
godot-bindings = { path = "../godot-bindings", version = "=0.1.2" } # emit_godot_version_cfg
27+
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" } # emit_godot_version_cfg
2828

2929
# Reverse dev dependencies so doctests can use `godot::` prefix.
3030
[dev-dependencies]

godot/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "godot"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"
@@ -10,7 +10,7 @@ description = "Rust bindings for Godot 4"
1010
authors = ["Bromeon", "godot-rust contributors"]
1111
repository = "https://github.com/godot-rust/gdext"
1212
homepage = "https://godot-rust.github.io"
13-
documentation = "https://docs.rs/godot/0.1.2"
13+
documentation = "https://docs.rs/godot/0.1.3"
1414
readme = "crate-readme.md"
1515

1616
[features]
@@ -50,8 +50,8 @@ __debug-log = ["godot-core/debug-log"]
5050
__trace = ["godot-core/trace"]
5151

5252
[dependencies]
53-
godot-core = { path = "../godot-core", version = "=0.1.2" }
54-
godot-macros = { path = "../godot-macros", version = "=0.1.2" }
53+
godot-core = { path = "../godot-core", version = "=0.1.3" }
54+
godot-macros = { path = "../godot-macros", version = "=0.1.3" }
5555

5656
# https://docs.rs/about/metadata
5757
[package.metadata.docs.rs]

0 commit comments

Comments
 (0)