Skip to content

Commit 5201a24

Browse files
committed
Release 0.13.0
1 parent c30f6f4 commit 5201a24

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### 0.13.0 - Mar 18, 2024
2+
3+
* Add non-const connect callback (#205)
4+
* Invoke all callbacks during redisClusterAsyncDisconnect() (#204)
5+
* Better support for JSON files describing commands metadata (#202)
6+
* Fix a compilation warning in command.c relating to kpos shadowing (#201)
7+
18
### 0.12.0 - Feb 9, 2024
29

310
* Update slotmap when slot is not served by any node (#192)

hircluster.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@
4040
#define UNUSED(x) (void)(x)
4141

4242
#define HIREDIS_CLUSTER_MAJOR 0
43-
#define HIREDIS_CLUSTER_MINOR 12
43+
#define HIREDIS_CLUSTER_MINOR 13
4444
#define HIREDIS_CLUSTER_PATCH 0
45-
#define HIREDIS_CLUSTER_SONAME 0.12
45+
#define HIREDIS_CLUSTER_SONAME 0.13
4646

4747
#define REDIS_CLUSTER_SLOTS 16384
4848

0 commit comments

Comments
 (0)