Skip to content

Commit

Permalink
v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Oct 6, 2014
1 parent b448ae6 commit be53179
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v1.2.0 / 2014 Oct 6

This is a maintenance update that is **non-breaking UNLESS**:
1. You are not using the default server-side chsk router.
2. You are relying on (`?reply-fn <args>)` to log a warning rather than throw an NPE for nil `?reply-fn`s.

* **FIX**: Broken chsk router shutdown due to http://goo.gl/be8CGP.
* **BREAKING** [#77]: No longer substitute a dummy (logging) `?reply-fn` for non-callback events.


## v1.1.0 / 2014 Sep 7

* **FIX**: https://github.com/ptaoussanis/timbre/issues/79 (unnecessary deps being pulled in).
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:

```clojure
[com.taoensso/sente "1.1.0"] ; May be BREAKING, see CHANGELOG for details
[com.taoensso/sente "1.2.0"] ; Please see CHANGELOG for details
```

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

```clojure
[com.taoensso/sente "1.1.0"]
[com.taoensso/sente "1.2.0"]
```

### On the server (Clojure) side
Expand Down
4 changes: 2 additions & 2 deletions example-project/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso.examples/sente "1.1.1-SNAPSHOT"
(defproject com.taoensso.examples/sente "1.2.0"
:description "Sente, reference web-app example project"
:url "https://github.com/ptaoussanis/sente"
:license {:name "Eclipse Public License"
Expand All @@ -18,7 +18,7 @@
;;
[cider/cider-nrepl "0.7.0"] ; Optional, for use with Emacs
;;
[com.taoensso/sente "1.1.1-SNAPSHOT"] ; <--- Sente
[com.taoensso/sente "1.2.0"] ; <--- Sente
[com.taoensso/timbre "3.3.1"]
;;
[http-kit "2.1.19"] ; <--- http-kit (currently required)
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/sente "1.1.1-SNAPSHOT"
(defproject com.taoensso/sente "1.2.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure channel sockets library"
:url "https://github.com/ptaoussanis/sente"
Expand Down

0 comments on commit be53179

Please sign in to comment.