Skip to content

Commit 1fa178e

Browse files
committed
v1.3.0
1 parent 7c20c77 commit 1fa178e

File tree

4 files changed

+9
-14
lines changed

4 files changed

+9
-14
lines changed

CHANGELOG.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3-
## v1.3.0-RC2 / 2015 Jan 13
3+
## v1.3.0 / 2015 Jan 17
44

5-
* **FIX** [#94]: ClojureScript dependency is now `:provided` to keep it from being unnecessarily pulled into JARs, etc (@zentrope).
6-
7-
8-
## v1.3.0-RC1 / 2014 Dec 11
9-
10-
> This is a maintenance release focused on general housekeeping + on adding some user-id flexibility.
5+
> This is a non-breaking maintenance release focused on general housekeeping + on adding some user-id flexibility.
116
127
* **DEPRECATED** [#85]: Server->user broadcasts should now use `:sente/all-users-without-uid` instead of `nil` uid when intending to broadcast to users _without_ a user id. The new behaviour is less accident prone.
13-
* **CHANGE** [#84]: Warn when necessary Ring middleware is missing.
8+
* **CHANGE** [#84, #95]: Improve error reporting in the case of missing Ring middleware.
9+
* **FIX** [#94]: ClojureScript dependency is now `:provided` to keep it from being unnecessarily pulled into JARs, etc (@zentrope).
1410
* **NEW** [#82]: Server-side `:user-id-fn`'s Ring request now includes a `:client-id` arg provided by clients.
1511
* Various doc+example improvements.
1612

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +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.2.0"] ; Stable
5-
[com.taoensso/sente "1.3.0-RC2"] ; Please see CHANGELOG for details
4+
[com.taoensso/sente "1.3.0"] ; Stable (see CHANGELOG for details)
65
```
76

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

5352
```clojure
54-
[com.taoensso/sente "1.2.0"]
53+
[com.taoensso/sente "1.3.0"]
5554
```
5655

5756
### 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.3.0-RC2"
1+
(defproject com.taoensso.examples/sente "1.3.0"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"
@@ -16,7 +16,7 @@
1616
[org.clojure/clojurescript "0.0-2411"]
1717
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
1818
;;
19-
[com.taoensso/sente "1.3.0-RC2"] ; <--- Sente
19+
[com.taoensso/sente "1.3.0"] ; <--- Sente
2020
[com.taoensso/timbre "3.3.1"]
2121
;;
2222
[http-kit "2.1.19"] ; <--- 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 "1.3.0-RC2"
1+
(defproject com.taoensso/sente "1.3.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)