Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release 0.13.0 #206

Merged
merged 2 commits into from
Mar 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
name: Run static checkers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Run clang-format style check (.c and .h)
uses: jidicula/[email protected]

Expand Down Expand Up @@ -53,10 +53,10 @@ jobs:
cmake -S hiredis-${VERSION} -B hiredis-build -DENABLE_SSL=ON
sudo make -C hiredis-build install
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1
uses: jwlawson/actions-setup-cmake@v2
with:
cmake-version: ${{ matrix.cmake-version }}
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Create build folder
run: cmake -E make_directory build
- name: Generate makefiles
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:
- name: Prepare
run: |
brew install cmake ninja openssl
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Build
run: |
mkdir build && cd build
Expand All @@ -113,7 +113,7 @@ jobs:
name: Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: ilammy/msvc-dev-cmd@v1
- name: Prepare
run: |
Expand All @@ -129,7 +129,7 @@ jobs:
name: Windows (MinGW64)
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up MinGW
uses: msys2/setup-msys2@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/coverity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/redis_compability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ jobs:
fail-fast: false
matrix:
include:
- redis-version: 7.0.0
- redis-version: 6.2.7
- redis-version: 6.0.16
- redis-version: 7.2.4
- redis-version: 7.0.15
- redis-version: 6.2.14
- redis-version: 6.0.20
- redis-version: 5.0.14
steps:
- name: Prepare
Expand All @@ -21,7 +22,7 @@ jobs:
packages: libevent-dev
version: 1.0

- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Create build folder
run: cmake -E make_directory build
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### 0.13.0 - Mar 18, 2024

* Add non-const connect callback (#205)
* Invoke all callbacks during redisClusterAsyncDisconnect() (#204)
* Better support for JSON files describing commands metadata (#202)
* Fix a compilation warning in command.c relating to kpos shadowing (#201)

### 0.12.0 - Feb 9, 2024

* Update slotmap when slot is not served by any node (#192)
Expand Down
4 changes: 2 additions & 2 deletions hircluster.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@
#define UNUSED(x) (void)(x)

#define HIREDIS_CLUSTER_MAJOR 0
#define HIREDIS_CLUSTER_MINOR 12
#define HIREDIS_CLUSTER_MINOR 13
#define HIREDIS_CLUSTER_PATCH 0
#define HIREDIS_CLUSTER_SONAME 0.12
#define HIREDIS_CLUSTER_SONAME 0.13

#define REDIS_CLUSTER_SLOTS 16384

Expand Down