Skip to content

Commit

Permalink
prepare for 0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
c-cube committed Jun 25, 2022
1 parent f141f29 commit 613b28a
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,6 @@
/.gh-pages
.merlin
*.install
*.exe

/result*
8 changes: 8 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

## WIP

## 0.6

- feat: exposed `send_custom_request` in the client
- add lmove and blmove
- Add support for OCaml 5.0
- Add bzpopmin, bzpopmax
- Add zpopmin, zpopmax

## 0.5

- add xadd, xlen, xdel, xrange, xrevrange, xtrim, xread
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.5"
version: "0.6"
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.5"
version: "0.6"
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.5"
version: "0.6"
maintainer: "Simon Cruanes"
authors: [
"Mike Wells"
Expand Down
2 changes: 1 addition & 1 deletion src/s.ml
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ module type Client = sig
(** [lmove from into sidefrom sideinto] moves an element from [from]
into [into], picking which side to pop/push based on the last arguments,
and returns the element.
@since NEXT_RELEASE
@since 0.6
since redis 6.2 *)

val blmove : connection ->
Expand Down

0 comments on commit 613b28a

Please sign in to comment.