Skip to content

Commit 60e5075

Browse files
Version 1.2.0 (#1202)
Co-authored-by: Michael Grunder <[email protected]>
1 parent adef139 commit 60e5075

File tree

2 files changed

+57
-6
lines changed

2 files changed

+57
-6
lines changed

CHANGELOG.md

+54-3
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,71 @@
1+
## [1.2.0](https://github.com/redis/hiredis/tree/v1.2.0) - (2023-06-04)
2+
3+
Announcing Hiredis v1.2.0 with with new adapters, and a great many bug fixes.
4+
5+
## 🚀 New Features
6+
7+
- Add sdevent adapter @Oipo (#1144)
8+
- Allow specifying the keepalive interval @michael-grunder (#1168)
9+
- Add RedisModule adapter @tezc (#1182)
10+
- Helper for setting TCP_USER_TIMEOUT socket option @zuiderkwast (#1188)
11+
12+
## 🐛 Bug Fixes
13+
14+
- Fix a typo in b6a052f. @yossigo (#1190)
15+
- Fix wincrypt symbols conflict @hudayou (#1151)
16+
- Don't attempt to set a timeout if we are in an error state. @michael-grunder (#1180)
17+
- Accept -nan per the RESP3 spec recommendation. @michael-grunder (#1178)
18+
- Fix colliding option values @zuiderkwast (#1172)
19+
- Ensure functionality without `_MSC_VER` definition @windyakin (#1194)
20+
21+
## 🧰 Maintenance
22+
23+
- Add a test for the TCP_USER_TIMEOUT option. @michael-grunder (#1192)
24+
- Add -Werror as a default. @yossigo (#1193)
25+
- CI: Update homebrew Redis version. @yossigo (#1191)
26+
- Fix typo in makefile. @michael-grunder (#1179)
27+
- Write a version file for the CMake package @Neverlord (#1165)
28+
- CMakeLists.txt: respect BUILD_SHARED_LIBS @ffontaine (#1147)
29+
- Cmake static or shared @autoantwort (#1160)
30+
- fix typo @tillkruss (#1153)
31+
- Add a test ensuring we don't clobber connection error. @michael-grunder (#1181)
32+
- Search for openssl on macOS @michael-grunder (#1169)
33+
34+
35+
## Contributors
36+
We'd like to thank all the contributors who worked on this release!
37+
38+
<a href="https://github.com/neverlord"><img src="https://github.com/neverlord.png" width="32" height="32"></a>
39+
<a href="https://github.com/Oipo"><img src="https://github.com/Oipo.png" width="32" height="32"></a>
40+
<a href="https://github.com/autoantwort"><img src="https://github.com/autoantwort.png" width="32" height="32"></a>
41+
<a href="https://github.com/ffontaine"><img src="https://github.com/ffontaine.png" width="32" height="32"></a>
42+
<a href="https://github.com/hudayou"><img src="https://github.com/hudayou.png" width="32" height="32"></a>
43+
<a href="https://github.com/michael-grunder"><img src="https://github.com/michael-grunder.png" width="32" height="32"></a>
44+
<a href="https://github.com/postgraph"><img src="https://github.com/postgraph.png" width="32" height="32"></a>
45+
<a href="https://github.com/tezc"><img src="https://github.com/tezc.png" width="32" height="32"></a>
46+
<a href="https://github.com/tillkruss"><img src="https://github.com/tillkruss.png" width="32" height="32"></a>
47+
<a href="https://github.com/vityafx"><img src="https://github.com/vityafx.png" width="32" height="32"></a>
48+
<a href="https://github.com/windyakin"><img src="https://github.com/windyakin.png" width="32" height="32"></a>
49+
<a href="https://github.com/yossigo"><img src="https://github.com/yossigo.png" width="32" height="32"></a>
50+
<a href="https://github.com/zuiderkwast"><img src="https://github.com/zuiderkwast.png" width="32" height="32"></a>
51+
152
## [1.1.0](https://github.com/redis/hiredis/tree/v1.1.0) - (2022-11-15)
253

354
Announcing Hiredis v1.1.0 GA with better SSL convenience, new async adapters and a great many bug fixes.
455

5-
**NOTE**: Hiredis can now return `nan` in addition to `-inf` and `inf` when returning a `REDIS_REPLY_DOUBLE`.
56+
**NOTE**: Hiredis can now return `nan` in addition to `-inf` and `inf` when returning a `REDIS_REPLY_DOUBLE`.
657

758
## 🐛 Bug Fixes
859

9-
- Add support for nan in RESP3 double [@filipecosta90](https://github.com/filipecosta90)
60+
- Add support for nan in RESP3 double [@filipecosta90](https://github.com/filipecosta90)
1061
([\#1133](https://github.com/redis/hiredis/pull/1133))
1162

1263
## 🧰 Maintenance
1364

1465
- Add an example that calls redisCommandArgv [@michael-grunder](https://github.com/michael-grunder)
1566
([\#1140](https://github.com/redis/hiredis/pull/1140))
1667
- fix flag reference [@pata00](https://github.com/pata00) ([\#1136](https://github.com/redis/hiredis/pull/1136))
17-
- Make freeing a NULL redisAsyncContext a no op. [@michael-grunder](https://github.com/michael-grunder)
68+
- Make freeing a NULL redisAsyncContext a no op. [@michael-grunder](https://github.com/michael-grunder)
1869
([\#1135](https://github.com/redis/hiredis/pull/1135))
1970
- CI updates ([@bjosv](https://github.com/redis/bjosv) ([\#1139](https://github.com/redis/hiredis/pull/1139))
2071

hiredis.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ typedef long long ssize_t;
4646
#include "alloc.h" /* for allocation wrappers */
4747

4848
#define HIREDIS_MAJOR 1
49-
#define HIREDIS_MINOR 1
50-
#define HIREDIS_PATCH 1
51-
#define HIREDIS_SONAME 1.1.1-dev
49+
#define HIREDIS_MINOR 2
50+
#define HIREDIS_PATCH 0
51+
#define HIREDIS_SONAME 1.1.0
5252

5353
/* Connection type can be blocking or non-blocking and is set in the
5454
* least significant bit of the flags field in redisContext. */

0 commit comments

Comments
 (0)