aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-10-01 21:22:25 +0200
committerHampusM <hampus@hampusmat.com>2023-10-01 21:22:25 +0200
commit21926b339232af57176c04adf110531633445bc7 (patch)
tree4e375e97c43ee9a6d91b9aa13846d95401b85b87
parentaf88321fc14a95b3613ec11a7f665db3c468c944 (diff)
build: bump version to 0.5.1
-rw-r--r--Cargo.lock4
-rw-r--r--Cargo.toml4
-rw-r--r--macros/Cargo.toml4
3 files changed, 6 insertions, 6 deletions
diff --git a/Cargo.lock b/Cargo.lock
index cd03ac1..cb795e1 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -511,7 +511,7 @@ dependencies = [
[[package]]
name = "syrette"
-version = "0.5.0"
+version = "0.5.1"
dependencies = [
"ahash",
"anyhow",
@@ -531,7 +531,7 @@ dependencies = [
[[package]]
name = "syrette_macros"
-version = "0.5.0"
+version = "0.5.1"
dependencies = [
"mockall",
"once_cell",
diff --git a/Cargo.toml b/Cargo.toml
index c0cdb40..5bb6bad 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "syrette"
-version = "0.5.0"
+version = "0.5.1"
license = "MIT OR Apache-2.0"
authors = ["HampusM <hampus@hampusmat.com>"]
description = "The convenient dependency injection framework"
@@ -37,7 +37,7 @@ name = "async-factory"
required-features = ["async", "factory"]
[dependencies]
-syrette_macros = { path = "./macros", version = "0.5.0" }
+syrette_macros = { path = "./macros", version = "0.5.1" }
linkme = "0.3.0"
once_cell = "1.4"
ahash = "0.7.6"
diff --git a/macros/Cargo.toml b/macros/Cargo.toml
index 6f27311..f35729a 100644
--- a/macros/Cargo.toml
+++ b/macros/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "syrette_macros"
-version = "0.5.0"
+version = "0.5.1"
license = "MIT OR Apache-2.0"
authors = ["HampusM <hampus@hampusmat.com>"]
description = "Macros for Syrette, the convenient dependency injection framework"
@@ -34,7 +34,7 @@ tracing = "0.1.37"
tracing-subscriber = "0.3.17"
[dev_dependencies]
-syrette = { version = "0.5.0", path = ".." }
+syrette = { version = "0.5.1", path = ".." }
mockall = "0.11.4"
pretty_assertions = "1.3.0"
syn = { version = "1.0.96", features = ["full", "extra-traits"] }