Skip to content

Commit

Permalink
prepare for 0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Oct 10, 2023
1 parent 6f4015b commit 9a3edcd
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 4 deletions.
8 changes: 7 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

## WIP
## 0.7


- add ability to connect to redis via unix sockets (Albert Peschar)
- add a connection pool implementation
- bugfix: fix out of order arguments caused by excessive concurrency
in redis-lwt (Khady)

## 0.6

Expand Down
2 changes: 1 addition & 1 deletion redis-lwt.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
maintainer: "Simon Cruanes"
version: "0.6"
version: "0.7"
authors: [
"Mike Wells"
"David Höppner"
Expand Down
2 changes: 1 addition & 1 deletion redis-sync.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "0.6"
version: "0.7"
maintainer: "Simon Cruanes"
authors: [
"Mike Wells"
Expand Down
2 changes: 1 addition & 1 deletion redis.opam
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
opam-version: "2.0"
version: "0.6"
version: "0.7"
maintainer: "Simon Cruanes"
authors: [
"Mike Wells"
Expand Down
2 changes: 2 additions & 0 deletions src/s.ml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ module type Client = sig
@since 0.5 *)

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

module SlotMap : Map.S with type key = int
module ConnectionSpecMap : Map.S with type key = connection_spec
Expand Down

0 comments on commit 9a3edcd

Please sign in to comment.