From e6e125c8863907e194566a5053e19f278023d9a0 Mon Sep 17 00:00:00 2001 From: JMTamayo Date: Fri, 31 Jan 2025 18:04:46 -0500 Subject: [PATCH 1/3] Include .DS_Store in .gitignore --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 3ba8001..a543b43 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,7 @@ Cargo.lock *.vscode # Remove .idea folder: -*.idea \ No newline at end of file +*.idea + +# Remove .DS_Store file: +.DS_Store \ No newline at end of file From ddddd7864a956186a43047af0e2970f2a3dd238a Mon Sep 17 00:00:00 2001 From: JMTamayo Date: Sun, 16 Feb 2025 14:14:00 -0500 Subject: [PATCH 2/3] fix (redsumer-rs): Set redis-rs version from greater than or equal to v0.28.0 to less than v0.29.0 --- redsumer-rs/Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/redsumer-rs/Cargo.toml b/redsumer-rs/Cargo.toml index 9f8dadc..1689749 100644 --- a/redsumer-rs/Cargo.toml +++ b/redsumer-rs/Cargo.toml @@ -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" @@ -13,7 +13,7 @@ categories = ["database-implementations"] authors = ["Juan Manuel Tamayo "] [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] From 774c5cce34a8ff15503d7eace244965bd5f79616 Mon Sep 17 00:00:00 2001 From: JMTamayo Date: Sun, 16 Feb 2025 14:16:40 -0500 Subject: [PATCH 3/3] feature (redsumer-rs): Update CHANGELOG.md with latest changes --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed041c6..c8fc284 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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: