From 2a93eb04701383be3216aa7d455478ad5506cd37 Mon Sep 17 00:00:00 2001 From: Jan Haller Date: Sun, 8 Dec 2024 18:19:35 +0100 Subject: [PATCH] Update crate version: 0.2.0 -> 0.2.1 --- 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 7429c7dab..eb4b18511 100644 --- a/godot-bindings/Cargo.toml +++ b/godot-bindings/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-bindings" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.80" license = "MPL-2.0" diff --git a/godot-cell/Cargo.toml b/godot-cell/Cargo.toml index a0d0f4294..1e7586d4a 100644 --- a/godot-cell/Cargo.toml +++ b/godot-cell/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-cell" -version = "0.2.0" +version = "0.2.1" edition = "2021" rust-version = "1.80" license = "MPL-2.0" diff --git a/godot-codegen/Cargo.toml b/godot-codegen/Cargo.toml index 2a8111254..ac73a3afd 100644 --- a/godot-codegen/Cargo.toml +++ b/godot-codegen/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-codegen" -version = "0.2.0" +version = "0.2.1" 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.0" } +godot-bindings = { path = "../godot-bindings", version = "=0.2.1" } 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.0" } # emit_godot_version_cfg +godot-bindings = { path = "../godot-bindings", version = "=0.2.1" } # 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 067d03234..a0bd19cf9 100644 --- a/godot-core/Cargo.toml +++ b/godot-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-core" -version = "0.2.0" +version = "0.2.1" 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.0" } +godot-ffi = { path = "../godot-ffi", version = "=0.2.1" } # 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.0" } +godot-cell = { path = "../godot-cell", version = "=0.2.1" } [build-dependencies] -godot-bindings = { path = "../godot-bindings", version = "=0.2.0" } -godot-codegen = { path = "../godot-codegen", version = "=0.2.0" } +godot-bindings = { path = "../godot-bindings", version = "=0.2.1" } +godot-codegen = { path = "../godot-codegen", version = "=0.2.1" } # Reverse dev dependencies so doctests can use `godot::` prefix. [dev-dependencies] diff --git a/godot-ffi/Cargo.toml b/godot-ffi/Cargo.toml index 15d2454e9..e7898fd67 100644 --- a/godot-ffi/Cargo.toml +++ b/godot-ffi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-ffi" -version = "0.2.0" +version = "0.2.1" 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.0" } -godot-codegen = { path = "../godot-codegen", version = "=0.2.0" } +godot-bindings = { path = "../godot-bindings", version = "=0.2.1" } +godot-codegen = { path = "../godot-codegen", version = "=0.2.1" } # https://docs.rs/about/metadata [package.metadata.docs.rs] diff --git a/godot-macros/Cargo.toml b/godot-macros/Cargo.toml index e0ac9ae9d..12c534606 100644 --- a/godot-macros/Cargo.toml +++ b/godot-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot-macros" -version = "0.2.0" +version = "0.2.1" 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.0" } # emit_godot_version_cfg +godot-bindings = { path = "../godot-bindings", version = "=0.2.1" } # 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 f2b609423..831c214fb 100644 --- a/godot/Cargo.toml +++ b/godot/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "godot" -version = "0.2.0" +version = "0.2.1" 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.0" +documentation = "https://docs.rs/godot/0.2.1" 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.0" } -godot-macros = { path = "../godot-macros", version = "=0.2.0" } +godot-core = { path = "../godot-core", version = "=0.2.1" } +godot-macros = { path = "../godot-macros", version = "=0.2.1" } # https://docs.rs/about/metadata [package.metadata.docs.rs]