Skip to content

Commit 61c613f

Browse files
authored
Merge pull request #30 from JMTamayo/main
Modified the Redis dependency version constraint to be >=0.28.0,<0.29.0 instead of just >=0.28.0
2 parents 0fc8a2a + ede7834 commit 61c613f

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,7 @@ Cargo.lock
1717
*.vscode
1818

1919
# Remove .idea folder:
20-
*.idea
20+
*.idea
21+
22+
# Remove .DS_Store file:
23+
.DS_Store

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## ✨ v0.5.4 [Unreleased]
9+
10+
### Changed:
11+
12+
- 🚀 Modified the Redis dependency version constraint to be >=0.28.0,<0.29.0 instead of just >=0.28.0. By [@JMTamayo](https://github.com/JMTamayo).
13+
814
## ✨ v0.5.3 [2025-01-27]
915

1016
### Changed:

redsumer-rs/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "redsumer"
33
description = "Lightweight implementation of Redis Streams for Rust"
4-
version = "0.5.3"
4+
version = "0.5.4"
55
edition = "2021"
66
license-file = "../LICENSE"
77
readme = "../README.md"
@@ -13,7 +13,7 @@ categories = ["database-implementations"]
1313
authors = ["Juan Manuel Tamayo <jmtamayog23@gmail.com>"]
1414

1515
[dependencies]
16-
redis = { version = ">=0.28.0", features = ["streams"] }
16+
redis = { version = ">=0.28.0,<0.29.0", features = ["streams"] }
1717
tracing = { version = ">=0.1.40" }
1818

1919
[dev-dependencies]

0 commit comments

Comments
 (0)