Skip to content

Commit 1608fed

Browse files
committed
v0.14.0
1 parent f4083c4 commit 1608fed

File tree

4 files changed

+8
-6
lines changed

4 files changed

+8
-6
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
## Pending / unreleased
1+
## v0.14.0 / 2014 May 16
2+
3+
> Minor, non-breaking update.
24
35
* **FIX**: WebSocket reconnect exponential backoff wasn't being reset correctly.
46
* [#39] **FIX**: Race condition affecting buffered `server>user` events (@smichal).

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.13.0"] ; Major usability improvements, some breaking changes
4+
[com.taoensso/sente "0.14.0"] ; 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.13.0"]
53+
[com.taoensso/sente "0.14.0"]
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-SNAPSHOT"
1+
(defproject com.taoensso.examples/sente "0.14.0"
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-SNAPSHOT"] ; <--- Sente
18+
[com.taoensso/sente "0.14.0"] ; <--- 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-SNAPSHOT"
1+
(defproject com.taoensso/sente "0.14.0"
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)