Skip to content

Commit 68c636a

Browse files
committed
prepare for 0.8
1 parent 5a8c0df commit 68c636a

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
# Changelog
22

3+
## 0.8
4+
5+
- printer for connection spec
6+
- add `send_pipelined_custom_requests`
7+
- add more docs about pubsub
8+
39
## 0.7.1
410

5-
fix: remove debug message in pool
11+
- fix: remove debug message in pool
612

713
## 0.7
814

redis-lwt.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
opam-version: "2.0"
22
maintainer: "Simon Cruanes"
3-
version: "0.7.1"
3+
version: "0.8"
44
authors: [
55
"Mike Wells"
66
"David Höppner"

redis-sync.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
opam-version: "2.0"
2-
version: "0.7.1"
2+
version: "0.8"
33
maintainer: "Simon Cruanes"
44
authors: [
55
"Mike Wells"

redis.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
opam-version: "2.0"
2-
version: "0.7.1"
2+
version: "0.8"
33
maintainer: "Simon Cruanes"
44
authors: [
55
"Mike Wells"

src/s.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,11 +96,11 @@ module type Client = sig
9696

9797
val string_of_connection_spec : connection_spec -> string
9898
(** Print the spec
99-
@since NEXT_RELEASE *)
99+
@since 0.8 *)
100100

101101
val pp_connection_spec : Format.formatter -> connection_spec -> unit
102102
(** Print the spec
103-
@since NEXT_RELEASE *)
103+
@since 0.8 *)
104104

105105
val connection_spec : ?port:int -> string -> connection_spec
106106
(** Create a connection spec with the given host.
@@ -154,7 +154,7 @@ module type Client = sig
154154
val send_pipelined_custom_requests : connection -> string list list -> reply list IO.t
155155
(** Send a list of custom requests in a pipelined fashion (all are written, then all
156156
replies are read)
157-
@since NEXT_RELEASE *)
157+
@since 0.8 *)
158158

159159
(** Authenticate to server with username and password. *)
160160
val auth_acl : connection -> string -> string -> unit IO.t

0 commit comments

Comments
 (0)