Skip to content

Commit

Permalink
Fix dependencies at minor versions
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel7grant committed Sep 15, 2024
1 parent 1caba32 commit 3da564c
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 20 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "redis-macros"
description = "Simple macros and wrappers to redis-rs to automatically serialize and deserialize structs with serde."
version = "0.4.1"
version = "0.4.2"
edition = "2021"
authors = ["Daniel Grant"]
readme = "README.md"
Expand All @@ -11,9 +11,9 @@ license = "MIT"
keywords = ["redis", "macro", "derive", "json"]

[dependencies]
deadpool-redis = "0.17.0"
redis = { version = "0.27.0", optional = true }
redis-macros-derive = { version = "0.4.0", optional = true, path = "./redis-macros-derive" }
deadpool-redis = "0.17"
redis = { version = "0.27", optional = true }
redis-macros-derive = { version = "0.4.2", optional = true, path = "./redis-macros-derive" }
serde = { version = "1.0", features = ["derive"], optional = true }
serde_json = { version = "1.0", optional = true }

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

[dev-dependencies]
deadpool-redis = { version = "0.17.0" }
redis = { version = "0.27.0", features = ["tokio-comp", "json"] }
deadpool-redis = { version = "0.17" }
redis = { version = "0.27", features = ["tokio-comp", "json"] }
serde_yaml = "0.9"
tokio = { version = "1.38", features = ["full"] }
8 changes: 7 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.4.2] - 2024-09-15

### Updated

- Change dependency version to be fixed for minor versions

## [0.4.1] - 2024-09-13

### Updated
Expand Down Expand Up @@ -51,4 +57,4 @@

- Derive macros for `redis` `FromRedisValue` and `ToRedisArgs` traits
- Wrapper type for unwrapping `Json` types
- Add automatic publishing to crates.io
- Add automatic publishing to crates.io
12 changes: 6 additions & 6 deletions redis-macros-derive/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions redis-macros-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "redis-macros-derive"
description = "Derive macros for the redis-macros package"
version = "0.4.1"
version = "0.4.2"
edition = "2021"
authors = ["Daniel Grant"]
readme = "README.md"
Expand All @@ -19,7 +19,7 @@ quote = "1.0"
syn = { version = "2.0" }

[dev-dependencies]
redis = { version = "0.27.0", features = ["tokio-comp", "json"] }
redis = { version = "0.27", features = ["tokio-comp", "json"] }
redis-macros = { path = ".." }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
Expand Down

0 comments on commit 3da564c

Please sign in to comment.