diff --git a/packages/redis_client/CHANGELOG.md b/packages/redis_client/CHANGELOG.md index ed7ef977..8bd6be09 100644 --- a/packages/redis_client/CHANGELOG.md +++ b/packages/redis_client/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.0.4 + +- feat: add `ttl` (time to live) on `set` API + ```dart + redis.set(key: 'hello', value: 'world', ttl: Duration(seconds: 10)); + ``` + # 0.0.3 - feat: add [`JSONPath`](https://redis.io/docs/data-types/json/path) support diff --git a/packages/redis_client/pubspec.yaml b/packages/redis_client/pubspec.yaml index f8a67916..4d21729e 100644 --- a/packages/redis_client/pubspec.yaml +++ b/packages/redis_client/pubspec.yaml @@ -1,6 +1,6 @@ name: shorebird_redis_client description: A lightweight Dart client library for communicating with a Redis server. Built by Shorebird. -version: 0.0.3 +version: 0.0.4 homepage: https://shorebird.dev repository: https://github.com/shorebirdtech/shorebird/tree/main/packages/redis_client topics: [redis, cache, shorebird]