Skip to content

Commit fdd9c9d

Browse files
committed
v1.9.0-beta2
1 parent cf53ed3 commit fdd9c9d

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3+
## v1.9.0-beta2 - 2016 Jun 13
4+
5+
```clojure
6+
[com.taoensso/sente "1.9.0-beta2"]
7+
```
8+
9+
> Changes since `1.9.0-beta1`:
10+
11+
* **New**: Add Aleph server adapter (@sorenmacbeth) [#236]
12+
* **Impl**: Servers now drive WebSocket identification (more robust, flexible)
13+
* **Fix**: Fixed faulty Nodejs Ajax adapter behaviour
14+
315
## v1.9.0-beta1 - 2016 Jun 10
416

517
```clojure

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
```clojure
77
[com.taoensso/sente "1.8.1"] ; Stable
8-
[com.taoensso/sente "1.9.0-beta1"] ; Dev (unstable), see CHANGELOG for details
8+
[com.taoensso/sente "1.9.0-beta2"] ; Dev (unstable), see CHANGELOG for details
99
```
1010

1111
Want to help [support taoensso/open-source]?

example-project/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.9.0-SNAPSHOT"
1+
(defproject com.taoensso.examples/sente "1.9.0-beta2"
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/core.async "0.2.374"]
1616
[org.clojure/tools.nrepl "0.2.12"] ; Optional, for Cider
1717

18-
[com.taoensso/sente "1.9.0-SNAPSHOT"] ; <--- Sente
18+
[com.taoensso/sente "1.9.0-beta2"] ; <--- Sente
1919
[com.taoensso/timbre "4.4.0"]
2020

2121
;;; TODO Choose (uncomment) a supported web server -----------------------

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/sente "1.9.0-SNAPSHOT"
1+
(defproject com.taoensso/sente "1.9.0-beta2"
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)