Skip to content

Commit

Permalink
Update change log
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelklishin committed Mar 10, 2014
1 parent 68ef049 commit ab5c01b
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
## Changes between Langohr 2.5.x and 2.6.0

### langohr.http/list-connections-from, /close-connections-from

`langohr.http/list-connections-from` and `langohr.http/close-connections-from`
are two new functions that list and close connections for a given username,
respectively:

``` clojure
(require '[langohr.http :as hc])

(hc/list-connections-from "guest")
;= a list of connections with username "guest"

;; closes all connections from "guest"
(hc/close-connections-from "guest")
```

### clj-http Upgrade

clj-http dependency has been updated to `0.9.0`.
Expand Down

0 comments on commit ab5c01b

Please sign in to comment.