Skip to content

Commit 55c6c68

Browse files
committed
Update crate version: 0.1.0 -> 0.1.1
1 parent 0e1984e commit 55c6c68

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.0"
3+
version = "0.1.1"
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.0"
3+
version = "0.1.1"
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.0"
3+
version = "0.1.1"
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.0" }
23+
godot-bindings = { path = "../godot-bindings", version = "=0.1.1" }
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.0" } # emit_godot_version_cfg
37+
godot-bindings = { path = "../godot-bindings", version = "=0.1.1" } # 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.0"
3+
version = "0.1.1"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"
@@ -43,16 +43,16 @@ api-4-2-2 = ["godot-ffi/api-4-2-2"]
4343
# ]]
4444

4545
[dependencies]
46-
godot-ffi = { path = "../godot-ffi", version = "=0.1.0" }
46+
godot-ffi = { path = "../godot-ffi", version = "=0.1.1" }
4747

4848
# See https://docs.rs/glam/latest/glam/index.html#feature-gates
4949
glam = { version = "0.27", features = ["debug-glam-assert"] }
5050
serde = { version = "1", features = ["derive"], optional = true }
51-
godot-cell = { path = "../godot-cell", version = "=0.1.0" }
51+
godot-cell = { path = "../godot-cell", version = "=0.1.1" }
5252

5353
[build-dependencies]
54-
godot-bindings = { path = "../godot-bindings", version = "=0.1.0" }
55-
godot-codegen = { path = "../godot-codegen", version = "=0.1.0" }
54+
godot-bindings = { path = "../godot-bindings", version = "=0.1.1" }
55+
godot-codegen = { path = "../godot-codegen", version = "=0.1.1" }
5656

5757
# Reverse dev dependencies so doctests can use `godot::` prefix.
5858
[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.0"
3+
version = "0.1.1"
44
edition = "2021"
55
rust-version = "1.78"
66
license = "MPL-2.0"
@@ -48,8 +48,8 @@ libc = "0.2.153"
4848
gensym = "0.1.1"
4949

5050
[build-dependencies]
51-
godot-bindings = { path = "../godot-bindings", version = "=0.1.0" }
52-
godot-codegen = { path = "../godot-codegen", version = "=0.1.0" }
51+
godot-bindings = { path = "../godot-bindings", version = "=0.1.1" }
52+
godot-codegen = { path = "../godot-codegen", version = "=0.1.1" }
5353

5454
# https://docs.rs/about/metadata
5555
[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.0"
3+
version = "0.1.1"
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.0" } # emit_godot_version_cfg
27+
godot-bindings = { path = "../godot-bindings", version = "=0.1.1" } # 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.0"
3+
version = "0.1.1"
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.0"
13+
documentation = "https://docs.rs/godot/0.1.1"
1414

1515
[features]
1616
default = ["codegen-full"]
@@ -48,8 +48,8 @@ debug-log = ["godot-core/debug-log"]
4848
trace = ["godot-core/trace"]
4949

5050
[dependencies]
51-
godot-core = { path = "../godot-core", version = "=0.1.0" }
52-
godot-macros = { path = "../godot-macros", version = "=0.1.0" }
51+
godot-core = { path = "../godot-core", version = "=0.1.1" }
52+
godot-macros = { path = "../godot-macros", version = "=0.1.1" }
5353

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

0 commit comments

Comments
 (0)