Skip to content

Commit

Permalink
Update crate version: 0.1.3 -> 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bromeon committed Nov 15, 2024
1 parent aab5f96 commit 4c7db48
Show file tree
Hide file tree
Showing 7 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion godot-bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godot-bindings"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.80"
license = "MPL-2.0"
Expand Down
2 changes: 1 addition & 1 deletion godot-cell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godot-cell"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.80"
license = "MPL-2.0"
Expand Down
6 changes: 3 additions & 3 deletions godot-codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godot-codegen"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.80"
license = "MPL-2.0"
Expand All @@ -21,7 +21,7 @@ experimental-godot-api = []
experimental-threads = []

[dependencies]
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" }
godot-bindings = { path = "../godot-bindings", version = "=0.2.0" }

heck = "0.5"
nanoserde = "0.1.35"
Expand All @@ -35,7 +35,7 @@ quote = "1.0.29"
regex = { version = "1.5.5", default-features = false, features = ["std", "unicode-bool", "unicode-gencat"] }

[build-dependencies]
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" } # emit_godot_version_cfg
godot-bindings = { path = "../godot-bindings", version = "=0.2.0" } # emit_godot_version_cfg

# https://docs.rs/about/metadata
[package.metadata.docs.rs]
Expand Down
10 changes: 5 additions & 5 deletions godot-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godot-core"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.80"
license = "MPL-2.0"
Expand Down Expand Up @@ -41,16 +41,16 @@ api-4-3 = ["godot-ffi/api-4-3"]
# ]]

[dependencies]
godot-ffi = { path = "../godot-ffi", version = "=0.1.3" }
godot-ffi = { path = "../godot-ffi", version = "=0.2.0" }

# See https://docs.rs/glam/latest/glam/index.html#feature-gates
glam = { version = "0.28", features = ["debug-glam-assert"] }
serde = { version = "1", features = ["derive"], optional = true }
godot-cell = { path = "../godot-cell", version = "=0.1.3" }
godot-cell = { path = "../godot-cell", version = "=0.2.0" }

[build-dependencies]
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" }
godot-codegen = { path = "../godot-codegen", version = "=0.1.3" }
godot-bindings = { path = "../godot-bindings", version = "=0.2.0" }
godot-codegen = { path = "../godot-codegen", version = "=0.2.0" }

# Reverse dev dependencies so doctests can use `godot::` prefix.
[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions godot-ffi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godot-ffi"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.80"
license = "MPL-2.0"
Expand Down Expand Up @@ -45,8 +45,8 @@ libc = "0.2.153"
gensym = "0.1.1"

[build-dependencies]
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" }
godot-codegen = { path = "../godot-codegen", version = "=0.1.3" }
godot-bindings = { path = "../godot-bindings", version = "=0.2.0" }
godot-codegen = { path = "../godot-codegen", version = "=0.2.0" }

# https://docs.rs/about/metadata
[package.metadata.docs.rs]
Expand Down
4 changes: 2 additions & 2 deletions godot-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godot-macros"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.80"
license = "MPL-2.0"
Expand Down Expand Up @@ -28,7 +28,7 @@ markdown = { version = "=1.0.0-alpha.21", optional = true }
venial = "0.6"

[build-dependencies]
godot-bindings = { path = "../godot-bindings", version = "=0.1.3" } # emit_godot_version_cfg
godot-bindings = { path = "../godot-bindings", version = "=0.2.0" } # emit_godot_version_cfg

# Reverse dev dependencies so doctests can use `godot::` prefix.
[dev-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions godot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "godot"
version = "0.1.3"
version = "0.2.0"
edition = "2021"
rust-version = "1.80"
license = "MPL-2.0"
Expand All @@ -10,7 +10,7 @@ description = "Rust bindings for Godot 4"
authors = ["Bromeon", "godot-rust contributors"]
repository = "https://github.com/godot-rust/gdext"
homepage = "https://godot-rust.github.io"
documentation = "https://docs.rs/godot/0.1.3"
documentation = "https://docs.rs/godot/0.2.0"
readme = "crate-readme.md"

[features]
Expand Down Expand Up @@ -48,8 +48,8 @@ __debug-log = ["godot-core/debug-log"]
__trace = ["godot-core/trace"]

[dependencies]
godot-core = { path = "../godot-core", version = "=0.1.3" }
godot-macros = { path = "../godot-macros", version = "=0.1.3" }
godot-core = { path = "../godot-core", version = "=0.2.0" }
godot-macros = { path = "../godot-macros", version = "=0.2.0" }

# https://docs.rs/about/metadata
[package.metadata.docs.rs]
Expand Down

0 comments on commit 4c7db48

Please sign in to comment.