Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
hiredis
Commits
c14775b4
Commit
c14775b4
authored
Nov 14, 2022
by
michael-grunder
Browse files
Prepare for v1.1.0 GA
parent
f0bdf840
Changes
3
Show whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
c14775b4
## [1.1.0](https://github.com/redis/hiredis/tree/v1.1.0) - (2022-11-15)
Announcing Hiredis v1.1.0 GA with better SSL convenience, new async adapters and a great many bug fixes.
**NOTE**
: Hiredis can now return
`nan`
in addition to
`-inf`
and
`inf`
when returning a
`REDIS_REPLY_DOUBLE`
.
## 🐛 Bug Fixes
-
Add support for nan in RESP3 double
[
@filipecosta90
](
https://github.com/filipecosta90
)
(
[
\#1133
](
https://github.com/redis/hiredis/pull/1133
)
)
## 🧰 Maintenance
-
Add an example that calls redisCommandArgv
[
@michael-grunder
](
https://github.com/michael-grunder
)
(
[
\#1140
](
https://github.com/redis/hiredis/pull/1140
)
)
-
fix flag reference
[
@pata00
](
https://github.com/pata00
)
(
[\#1136](https://github.com/redis/hiredis/pull/1136
)
)
-
Make freeing a NULL redisAsyncContext a no op.
[
@michael-grunder
](
https://github.com/michael-grunder
)
(
[
\#1135
](
https://github.com/redis/hiredis/pull/1135
)
)
-
CI updates (
[
@bjosv
](
https://github.com/redis/bjosv
)
(
[\#1139](https://github.com/redis/hiredis/pull/1139
)
)
## Contributors
We'd like to thank all the contributors who worked on this release!
<a
href=
"https://github.com/bjsov"
><img
src=
"https://github.com/bjosv.png"
width=
"32"
height=
"32"
></a>
<a
href=
"https://github.com/filipecosta90"
><img
src=
"https://github.com/filipecosta90.png"
width=
"32"
height=
"32"
></a>
<a
href=
"https://github.com/michael-grunder"
><img
src=
"https://github.com/michael-grunder.png"
width=
"32"
height=
"32"
></a>
<a
href=
"https://github.com/pata00"
><img
src=
"https://github.com/pata00.png"
width=
"32"
height=
"32"
></a>
## [1.1.0-rc1](https://github.com/redis/hiredis/tree/v1.1.0-rc1) - (2022-11-06)
## [1.1.0-rc1](https://github.com/redis/hiredis/tree/v1.1.0-rc1) - (2022-11-06)
Announcing Hiredis v1.1.0-rc1, with better SSL convenience, new async adapters, and a great many bug fixes.
Announcing Hiredis v1.1.0-rc1, with better SSL convenience, new async adapters, and a great many bug fixes.
...
...
README.md
View file @
c14775b4
...
@@ -25,7 +25,10 @@ The library comes with multiple APIs. There is the
...
@@ -25,7 +25,10 @@ The library comes with multiple APIs. There is the
## Upgrading to `1.1.0`
## Upgrading to `1.1.0`
You will need to recompile your application when upgrading from v1.0.0 to v1.1.0, but other than that no changes should be needed.
Almost all users will simply need to recompile their applications against the newer version of hiredis.
**NOTE**
: Hiredis can now return
`nan`
in addition to
`-inf`
and
`inf`
in a
`REDIS_REPLY_DOUBLE`
.
Applications that deal with
`RESP3`
doubles should make sure to account for this.
## Upgrading to `1.0.2`
## Upgrading to `1.0.2`
...
...
hiredis.h
View file @
c14775b4
...
@@ -48,7 +48,7 @@ typedef long long ssize_t;
...
@@ -48,7 +48,7 @@ typedef long long ssize_t;
#define HIREDIS_MAJOR 1
#define HIREDIS_MAJOR 1
#define HIREDIS_MINOR 1
#define HIREDIS_MINOR 1
#define HIREDIS_PATCH 0
#define HIREDIS_PATCH 0
#define HIREDIS_SONAME 1.1.0
-dev
#define HIREDIS_SONAME 1.1.0
/* Connection type can be blocking or non-blocking and is set in the
/* Connection type can be blocking or non-blocking and is set in the
* least significant bit of the flags field in redisContext. */
* least significant bit of the flags field in redisContext. */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment