Skip to content

Commit 699742a

Browse files
committed
v1.4.1
1 parent 45c74b3 commit 699742a

File tree

4 files changed

+14
-5
lines changed

4 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3+
## v1.4.1 - 2015 Mar 11
4+
5+
> Trivial, non-breaking release that adds a pair of optional web-adapter aliases to help make examples a little simpler.
6+
7+
```clojure
8+
[com.taoensso/sente "1.4.1"]
9+
```
10+
11+
312
## v1.4.0 - 2015 Mar 9
413

514
> This is a major **BREAKING** release. Biggest change is added support for web servers besides http-kit (only _Immutant_ for now). A big thanks to @tobias for his assistance with the Immutant support.

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/contrib](#contact--contributing) | current [Break Version][]:
22

33
```clojure
4-
[com.taoensso/sente "1.4.0"] ; BREAKS from v1.3.x, see CHANGELOG for details
4+
[com.taoensso/sente "1.4.1"] ; BREAKS from v1.3.x, see CHANGELOG for details
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 "1.4.0"]
53+
[com.taoensso/sente "1.4.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 "1.4.0"
1+
(defproject com.taoensso.examples/sente "1.4.1"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"
@@ -18,7 +18,7 @@
1818

1919
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
2020

21-
[com.taoensso/sente "1.4.0"] ; <--- Sente
21+
[com.taoensso/sente "1.4.1"] ; <--- Sente
2222
[com.taoensso/timbre "3.3.1"]
2323

2424
;;; ---> Choose (uncomment) a supported web server <---

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 "1.4.0"
1+
(defproject com.taoensso/sente "1.4.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)