Skip to content

Commit 55c163b

Browse files
committed
v0.14.1
1 parent 4e2679d commit 55c163b

File tree

4 files changed

+12
-5
lines changed

4 files changed

+12
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v0.14.1 / 2014 May 18
2+
3+
> Minor, non-breaking update.
4+
5+
* **FIX**: Handshakes were interfering with singleton WebSocket callback replies.
6+
7+
18
## v0.14.0 / 2014 May 16
29

310
> Minor, non-breaking update.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version:
22

33
```clojure
4-
[com.taoensso/sente "0.14.0"] ; Stable
4+
[com.taoensso/sente "0.14.1"] ; Stable
55
```
66

77
# Sente, channel sockets for Clojure
@@ -50,7 +50,7 @@ So you can ignore the underlying protocol and deal directly with Sente's unified
5050
Add the necessary dependency to your [Leiningen][] `project.clj`. This'll provide your project with both the client (ClojureScript) + server (Clojure) side library code:
5151

5252
```clojure
53-
[com.taoensso/sente "0.14.0"]
53+
[com.taoensso/sente "0.14.1"]
5454
```
5555

5656
### On the server (Clojure) side

example-project/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "0.14.0"
1+
(defproject com.taoensso.examples/sente "0.14.1"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"
@@ -15,7 +15,7 @@
1515
[org.clojure/clojurescript "0.0-2173"]
1616
[org.clojure/core.async "0.1.278.0-76b25b-alpha"]
1717
;;
18-
[com.taoensso/sente "0.14.0"] ; <--- Sente
18+
[com.taoensso/sente "0.14.1"] ; <--- Sente
1919
[com.taoensso/timbre "3.2.1"]
2020
;;
2121
[http-kit "2.1.18"] ; <--- http-kit (currently required)

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/sente "0.14.0"
1+
(defproject com.taoensso/sente "0.14.1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Clojure channel sockets library"
44
:url "https://github.com/ptaoussanis/sente"

0 commit comments

Comments
 (0)