Skip to content

Commit a884c90

Browse files
committed
v1.8.1
1 parent 8ce0c8e commit a884c90

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3+
## v1.8.1 - 2016 Mar 4
4+
5+
```clojure
6+
[com.taoensso/sente "1.8.1"]
7+
```
8+
9+
* **Hotfix**: add missing `event?` alias
10+
311
## v1.8.0 - 2016 Feb 16
412

513
> This is a major **non-breaking** feature release, enjoy! :-)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**[CHANGELOG]** | [API] | current [Break Version]:
55

66
```clojure
7-
[com.taoensso/sente "1.8.0"] ; Stable
7+
[com.taoensso/sente "1.8.1"] ; Stable
88
```
99

1010
# Sente
@@ -53,7 +53,7 @@ So you can ignore the underlying protocol and deal directly with Sente's unified
5353
Add the necessary dependency to your project:
5454

5555
```clojure
56-
[com.taoensso/sente "1.8.0"]
56+
[com.taoensso/sente "1.8.1"]
5757
```
5858

5959
### 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.8.0"
1+
(defproject com.taoensso.examples/sente "1.8.1"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"
@@ -17,7 +17,7 @@
1717
[org.clojure/core.async "0.2.374"]
1818
[org.clojure/tools.nrepl "0.2.12"] ; Optional, for Cider
1919

20-
[com.taoensso/sente "1.8.0"] ; <--- Sente
20+
[com.taoensso/sente "1.8.1"] ; <--- Sente
2121
[com.taoensso/timbre "4.3.1"]
2222

2323
;;; ---> 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.8.0"
1+
(defproject com.taoensso/sente "1.8.1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Realtime web comms for Clojure/Script"
44
:url "https://github.com/ptaoussanis/sente"

0 commit comments

Comments
 (0)