From f6e2d0ca361c427b1704d0710362dc538bbb19c7 Mon Sep 17 00:00:00 2001 From: Jan Haller Date: Tue, 31 Dec 2024 19:43:32 +0100 Subject: [PATCH] Update crate version: 0.2.1 -> 0.2.2 --- godot-bindings/Cargo.toml | 2 +- godot-cell/Cargo.toml | 2 +- godot-codegen/Cargo.toml | 6 +++--- godot-core/Cargo.toml | 10 +++++----- godot-ffi/Cargo.toml | 6 +++--- godot-macros/Cargo.toml | 4 ++-- godot/Cargo.toml | 8 ++++---- 7 files changed, 19 insertions(+), 19 deletions(-) diff --git a/godot-bindings/Cargo.toml b/godot-bindings/Cargo.toml index eb4b18511..80ec2b66a 100644 --- a/godot-bindings/Cargo.toml +++ b/godot-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-bindings" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.80" license = "MPL-2.0" diff --git a/godot-cell/Cargo.toml b/godot-cell/Cargo.toml index 1e7586d4a..41d1aced6 100644 --- a/godot-cell/Cargo.toml +++ b/godot-cell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-cell" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.80" license = "MPL-2.0" diff --git a/godot-codegen/Cargo.toml b/godot-codegen/Cargo.toml index ac73a3afd..bb99df4f0 100644 --- a/godot-codegen/Cargo.toml +++ b/godot-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-codegen" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.80" license = "MPL-2.0" @@ -21,7 +21,7 @@ experimental-godot-api = [] experimental-threads = [] [dependencies] -godot-bindings = { path = "../godot-bindings", version = "=0.2.1" } +godot-bindings = { path = "../godot-bindings", version = "=0.2.2" } heck = "0.5" nanoserde = "0.1.35" @@ -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.2.1" } # emit_godot_version_cfg +godot-bindings = { path = "../godot-bindings", version = "=0.2.2" } # emit_godot_version_cfg # https://docs.rs/about/metadata [package.metadata.docs.rs] diff --git a/godot-core/Cargo.toml b/godot-core/Cargo.toml index a0bd19cf9..18793c514 100644 --- a/godot-core/Cargo.toml +++ b/godot-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-core" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.80" license = "MPL-2.0" @@ -41,16 +41,16 @@ api-4-3 = ["godot-ffi/api-4-3"] # ]] [dependencies] -godot-ffi = { path = "../godot-ffi", version = "=0.2.1" } +godot-ffi = { path = "../godot-ffi", version = "=0.2.2" } # 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.2.1" } +godot-cell = { path = "../godot-cell", version = "=0.2.2" } [build-dependencies] -godot-bindings = { path = "../godot-bindings", version = "=0.2.1" } -godot-codegen = { path = "../godot-codegen", version = "=0.2.1" } +godot-bindings = { path = "../godot-bindings", version = "=0.2.2" } +godot-codegen = { path = "../godot-codegen", version = "=0.2.2" } # Reverse dev dependencies so doctests can use `godot::` prefix. [dev-dependencies] diff --git a/godot-ffi/Cargo.toml b/godot-ffi/Cargo.toml index e7898fd67..5525daaad 100644 --- a/godot-ffi/Cargo.toml +++ b/godot-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-ffi" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.80" license = "MPL-2.0" @@ -45,8 +45,8 @@ libc = "0.2.153" gensym = "0.1.1" [build-dependencies] -godot-bindings = { path = "../godot-bindings", version = "=0.2.1" } -godot-codegen = { path = "../godot-codegen", version = "=0.2.1" } +godot-bindings = { path = "../godot-bindings", version = "=0.2.2" } +godot-codegen = { path = "../godot-codegen", version = "=0.2.2" } # https://docs.rs/about/metadata [package.metadata.docs.rs] diff --git a/godot-macros/Cargo.toml b/godot-macros/Cargo.toml index 12c534606..ba3594d70 100644 --- a/godot-macros/Cargo.toml +++ b/godot-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-macros" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.80" license = "MPL-2.0" @@ -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.2.1" } # emit_godot_version_cfg +godot-bindings = { path = "../godot-bindings", version = "=0.2.2" } # emit_godot_version_cfg # Reverse dev dependencies so doctests can use `godot::` prefix. [dev-dependencies] diff --git a/godot/Cargo.toml b/godot/Cargo.toml index 831c214fb..85c4684f2 100644 --- a/godot/Cargo.toml +++ b/godot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot" -version = "0.2.1" +version = "0.2.2" edition = "2021" rust-version = "1.80" license = "MPL-2.0" @@ -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.2.1" +documentation = "https://docs.rs/godot/0.2.2" readme = "crate-readme.md" [features] @@ -48,8 +48,8 @@ __debug-log = ["godot-core/debug-log"] __trace = ["godot-core/trace"] [dependencies] -godot-core = { path = "../godot-core", version = "=0.2.1" } -godot-macros = { path = "../godot-macros", version = "=0.2.1" } +godot-core = { path = "../godot-core", version = "=0.2.2" } +godot-macros = { path = "../godot-macros", version = "=0.2.2" } # https://docs.rs/about/metadata [package.metadata.docs.rs]