Skip to content

Commit

Permalink
v0.14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed May 18, 2014
1 parent 4e2679d commit 55c163b
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## v0.14.1 / 2014 May 18

> Minor, non-breaking update.
* **FIX**: Handshakes were interfering with singleton WebSocket callback replies.


## v0.14.0 / 2014 May 16

> Minor, non-breaking update.
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contributing](#contact--contributing) | current ([semantic][]) version:

```clojure
[com.taoensso/sente "0.14.0"] ; Stable
[com.taoensso/sente "0.14.1"] ; Stable
```

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

```clojure
[com.taoensso/sente "0.14.0"]
[com.taoensso/sente "0.14.1"]
```

### On the server (Clojure) side
Expand Down
4 changes: 2 additions & 2 deletions example-project/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso.examples/sente "0.14.0"
(defproject com.taoensso.examples/sente "0.14.1"
:description "Sente, reference web-app example project"
:url "https://github.com/ptaoussanis/sente"
:license {:name "Eclipse Public License"
Expand All @@ -15,7 +15,7 @@
[org.clojure/clojurescript "0.0-2173"]
[org.clojure/core.async "0.1.278.0-76b25b-alpha"]
;;
[com.taoensso/sente "0.14.0"] ; <--- Sente
[com.taoensso/sente "0.14.1"] ; <--- Sente
[com.taoensso/timbre "3.2.1"]
;;
[http-kit "2.1.18"] ; <--- http-kit (currently required)
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/sente "0.14.0"
(defproject com.taoensso/sente "0.14.1"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure channel sockets library"
:url "https://github.com/ptaoussanis/sente"
Expand Down

0 comments on commit 55c163b

Please sign in to comment.