Skip to content

Commit 3da564c

Browse files
committed
Fix dependencies at minor versions
1 parent 1caba32 commit 3da564c

File tree

5 files changed

+26
-20
lines changed

5 files changed

+26
-20
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "redis-macros"
33
description = "Simple macros and wrappers to redis-rs to automatically serialize and deserialize structs with serde."
4-
version = "0.4.1"
4+
version = "0.4.2"
55
edition = "2021"
66
authors = ["Daniel Grant"]
77
readme = "README.md"
@@ -11,9 +11,9 @@ license = "MIT"
1111
keywords = ["redis", "macro", "derive", "json"]
1212

1313
[dependencies]
14-
deadpool-redis = "0.17.0"
15-
redis = { version = "0.27.0", optional = true }
16-
redis-macros-derive = { version = "0.4.0", optional = true, path = "./redis-macros-derive" }
14+
deadpool-redis = "0.17"
15+
redis = { version = "0.27", optional = true }
16+
redis-macros-derive = { version = "0.4.2", optional = true, path = "./redis-macros-derive" }
1717
serde = { version = "1.0", features = ["derive"], optional = true }
1818
serde_json = { version = "1.0", optional = true }
1919

@@ -23,7 +23,7 @@ json = ["dep:redis", "dep:serde", "dep:serde_json"]
2323
macros = ["dep:redis-macros-derive"]
2424

2525
[dev-dependencies]
26-
deadpool-redis = { version = "0.17.0" }
27-
redis = { version = "0.27.0", features = ["tokio-comp", "json"] }
26+
deadpool-redis = { version = "0.17" }
27+
redis = { version = "0.27", features = ["tokio-comp", "json"] }
2828
serde_yaml = "0.9"
2929
tokio = { version = "1.38", features = ["full"] }

Changelog.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.4.2] - 2024-09-15
4+
5+
### Updated
6+
7+
- Change dependency version to be fixed for minor versions
8+
39
## [0.4.1] - 2024-09-13
410

511
### Updated
@@ -51,4 +57,4 @@
5157

5258
- Derive macros for `redis` `FromRedisValue` and `ToRedisArgs` traits
5359
- Wrapper type for unwrapping `Json` types
54-
- Add automatic publishing to crates.io
60+
- Add automatic publishing to crates.io

redis-macros-derive/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

redis-macros-derive/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "redis-macros-derive"
33
description = "Derive macros for the redis-macros package"
4-
version = "0.4.1"
4+
version = "0.4.2"
55
edition = "2021"
66
authors = ["Daniel Grant"]
77
readme = "README.md"
@@ -19,7 +19,7 @@ quote = "1.0"
1919
syn = { version = "2.0" }
2020

2121
[dev-dependencies]
22-
redis = { version = "0.27.0", features = ["tokio-comp", "json"] }
22+
redis = { version = "0.27", features = ["tokio-comp", "json"] }
2323
redis-macros = { path = ".." }
2424
serde = { version = "1.0", features = ["derive"] }
2525
serde_json = { version = "1.0" }

0 commit comments

Comments
 (0)