File tree Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Expand file tree Collapse file tree 3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -17,4 +17,7 @@ Cargo.lock
17
17
* .vscode
18
18
19
19
# Remove .idea folder:
20
- * .idea
20
+ * .idea
21
+
22
+ # Remove .DS_Store file:
23
+ .DS_Store
Original file line number Diff line number Diff line change @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [ Keep a Changelog] ( https://keepachangelog.com/en/1.1.0/ ) ,
6
6
and this project adheres to [ Semantic Versioning] ( https://semver.org/spec/v2.0.0.html ) .
7
7
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
+
8
14
## ✨ v0.5.3 [ 2025-01-27]
9
15
10
16
### Changed:
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " redsumer"
3
3
description = " Lightweight implementation of Redis Streams for Rust"
4
- version = " 0.5.3 "
4
+ version = " 0.5.4 "
5
5
edition = " 2021"
6
6
license-file = " ../LICENSE"
7
7
readme = " ../README.md"
@@ -13,7 +13,7 @@ categories = ["database-implementations"]
13
13
authors = [" Juan Manuel Tamayo <jmtamayog23@gmail.com>" ]
14
14
15
15
[dependencies ]
16
- redis = { version = " >=0.28.0" , features = [" streams" ] }
16
+ redis = { version = " >=0.28.0,<0.29.0 " , features = [" streams" ] }
17
17
tracing = { version = " >=0.1.40" }
18
18
19
19
[dev-dependencies ]
You can’t perform that action at this time.
0 commit comments