diff --git a/doc-tests/Cargo.toml b/doc-tests/Cargo.toml index 82b203e..99d5891 100644 --- a/doc-tests/Cargo.toml +++ b/doc-tests/Cargo.toml @@ -12,7 +12,7 @@ license.workspace = true workspace = true [dependencies] -ferrunix = { path = "../ferrunix", version = "=0.3.1" } +ferrunix = { path = "../ferrunix", version = "=0.3.2" } [dev-dependencies] skeptic = { git = "https://github.com/Leandros/rust-skeptic.git", rev = "45d69d27c3ee1f0cf66072053bb6f88c1be0e07b" } diff --git a/ferrunix-core/Cargo.toml b/ferrunix-core/Cargo.toml index 078e1f0..01bb74b 100644 --- a/ferrunix-core/Cargo.toml +++ b/ferrunix-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ferrunix-core" -version = "0.3.1" +version = "0.3.2" description = "Core types, traits, and implementations for ferrunix" readme = "README.md" # Inherited. diff --git a/ferrunix-macros/Cargo.toml b/ferrunix-macros/Cargo.toml index 03216ef..552c94b 100644 --- a/ferrunix-macros/Cargo.toml +++ b/ferrunix-macros/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ferrunix-macros" -version = "0.3.1" +version = "0.3.2" description = "Proc-macro for ferrunix" readme = "README.md" # Inherited. diff --git a/ferrunix/Cargo.toml b/ferrunix/Cargo.toml index eb4e2a0..f758cfa 100644 --- a/ferrunix/Cargo.toml +++ b/ferrunix/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ferrunix" -version = "0.3.1" +version = "0.3.2" description = "A lightweight run-time dependency injection framework for Rust" readme = "README.md" # Inherited. @@ -24,8 +24,8 @@ tokio = ["ferrunix-core/tokio", "ferrunix-macros?/tokio"] tracing = ["ferrunix-core/tracing"] [dependencies] -ferrunix-core = { path = "../ferrunix-core", default-features = false, version = "=0.3.1" } -ferrunix-macros = { path = "../ferrunix-macros", optional = true, version = "=0.3.1" } +ferrunix-core = { path = "../ferrunix-core", default-features = false, version = "=0.3.2" } +ferrunix-macros = { path = "../ferrunix-macros", optional = true, version = "=0.3.2" } [dev-dependencies] thiserror = "1"