diff --git a/CHANGELOG.md b/CHANGELOG.md index 8733096..7e6b70b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### 0.12.0 - Feb 9, 2024 + +* Update slotmap when slot is not served by any node (#192) +* Prevent slotmap updates during redisClusterAsyncFree() (#195) +* Fix builds when using CMake < v3.15 (#196) +* Support adding custom commands at compile time (#200) +* Fix the check for ":0@0" in CLUSTER NODES result (#199) + ### 0.11.0 - Sep 15, 2023 * Add event callback for events like 'slotmap updated'. diff --git a/hircluster.h b/hircluster.h index e56a1ea..b79dd3f 100644 --- a/hircluster.h +++ b/hircluster.h @@ -40,9 +40,9 @@ #define UNUSED(x) (void)(x) #define HIREDIS_CLUSTER_MAJOR 0 -#define HIREDIS_CLUSTER_MINOR 11 +#define HIREDIS_CLUSTER_MINOR 12 #define HIREDIS_CLUSTER_PATCH 0 -#define HIREDIS_CLUSTER_SONAME 0.11 +#define HIREDIS_CLUSTER_SONAME 0.12 #define REDIS_CLUSTER_SLOTS 16384