Skip to content

Commit

Permalink
Merge pull request #30 from JMTamayo/main
Browse files Browse the repository at this point in the history
 Modified the Redis dependency version constraint to be >=0.28.0,<0.29.0 instead of just >=0.28.0
  • Loading branch information
JMTamayo authored Feb 17, 2025
2 parents 0fc8a2a + ede7834 commit 61c613f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,7 @@ Cargo.lock
*.vscode

# Remove .idea folder:
*.idea
*.idea

# Remove .DS_Store file:
.DS_Store
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## ✨ v0.5.4 [Unreleased]

### Changed:

- 🚀 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).

## ✨ v0.5.3 [2025-01-27]

### Changed:
Expand Down
4 changes: 2 additions & 2 deletions redsumer-rs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "redsumer"
description = "Lightweight implementation of Redis Streams for Rust"
version = "0.5.3"
version = "0.5.4"
edition = "2021"
license-file = "../LICENSE"
readme = "../README.md"
Expand All @@ -13,7 +13,7 @@ categories = ["database-implementations"]
authors = ["Juan Manuel Tamayo <[email protected]>"]

[dependencies]
redis = { version = ">=0.28.0", features = ["streams"] }
redis = { version = ">=0.28.0,<0.29.0", features = ["streams"] }
tracing = { version = ">=0.1.40" }

[dev-dependencies]
Expand Down

0 comments on commit 61c613f

Please sign in to comment.