Skip to content

Commit

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

* **FIX**: https://github.com/ptaoussanis/timbre/issues/79 (unnecessary deps being pulled in).
* **NEW**: Added client-side `ajax-call` utility.
* **NEW**: Added keys to `event-msg`s: `:id` (event-id), `:?data` (event-?data).


## v1.0.0 / 2014 Sep 2

> This is a MAJOR release with a bunch of improvements, most notably efficiency improvements. It is BREAKING if-and-only-if you read from the client-side :ch-recv channel directly.
Expand Down
2 changes: 1 addition & 1 deletion 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.0.0"] ; May be BREAKING, see CHANGELOG for details
[com.taoensso/sente "1.1.0"] ; May be BREAKING, see CHANGELOG for details
```

# Sente, channel sockets for Clojure
Expand Down
6 changes: 3 additions & 3 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.0.0"
(defproject com.taoensso.examples/sente "1.1.0"
:description "Sente, reference web-app example project"
:url "https://github.com/ptaoussanis/sente"
:license {:name "Eclipse Public License"
Expand All @@ -16,8 +16,8 @@
[org.clojure/clojurescript "0.0-2322"]
[org.clojure/core.async "0.1.338.0-5c5012-alpha"]
;;
[com.taoensso/sente "1.0.0"] ; <--- Sente
[com.taoensso/timbre "3.2.1"]
[com.taoensso/sente "1.1.0"] ; <--- Sente
[com.taoensso/timbre "3.3.1"]
;;
[http-kit "2.1.19"] ; <--- http-kit (currently required)
;;
Expand Down
4 changes: 2 additions & 2 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/sente "1.0.0"
(defproject com.taoensso/sente "1.1.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Clojure channel sockets library"
:url "https://github.com/ptaoussanis/sente"
Expand All @@ -16,7 +16,7 @@
[org.clojure/core.async "0.1.338.0-5c5012-alpha"]
[org.clojure/tools.reader "0.8.8"]
[com.taoensso/encore "1.8.1"]
[com.taoensso/timbre "3.2.1"]
[com.taoensso/timbre "3.3.1"]
[http-kit "2.1.19"]]

;; :plugins
Expand Down

0 comments on commit 3dbc98c

Please sign in to comment.