Skip to content

Commit 9a3edcd

Browse files
committed
prepare for 0.7
1 parent 6f4015b commit 9a3edcd

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

CHANGES.md

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

3-
## WIP
3+
## 0.7
4+
5+
6+
- add ability to connect to redis via unix sockets (Albert Peschar)
7+
- add a connection pool implementation
8+
- bugfix: fix out of order arguments caused by excessive concurrency
9+
in redis-lwt (Khady)
410

511
## 0.6
612

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.6"
3+
version: "0.7"
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.6"
2+
version: "0.7"
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.6"
2+
version: "0.7"
33
maintainer: "Simon Cruanes"
44
authors: [
55
"Mike Wells"

src/s.ml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ module type Client = sig
100100
@since 0.5 *)
101101

102102
val connection_spec_unix_socket : string -> connection_spec
103+
(** Create a connection spec to use the given Unix socket.
104+
@since 0.7 *)
103105

104106
module SlotMap : Map.S with type key = int
105107
module ConnectionSpecMap : Map.S with type key = connection_spec

0 commit comments

Comments
 (0)