Skip to content

Commit

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

```clojure
[com.taoensso/sente "1.10.0"]
```

> This is a minor, non-breaking release focused on moving from .cljx -> .cljc
* [#242] **Impl**: Switch from .cljx to .cljc (@danielcompton)
* [#243] **Impl**: Add support for nodejs clients (@DaveWM)
* [#246] **New**: Add :protocol parameter to make-channel-socket-client! (@tiensonqin)
* [#247] **New**: `SENTE_ELIDE_JS_REQUIRE` environment var for use with **React Native**

## v1.9.0 - 2016 Jul 6

```clojure
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
**[CHANGELOG]** | [API] | current [Break Version]:

```clojure
[com.taoensso/sente "1.9.0"] ; BREAKING, see CHANGELOG for details
[com.taoensso/sente "1.10.0"] ; See CHANGELOG for details
```

> Please consider helping to [support my continued open-source Clojure/Script work]?
Expand Down Expand Up @@ -59,7 +59,7 @@ So you can ignore the underlying protocol and deal directly with Sente's unified
Add the necessary dependency to your project:

```clojure
[com.taoensso/sente "1.9.0"]
[com.taoensso/sente "1.10.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.10.0-SNAPSHOT"
(defproject com.taoensso.examples/sente "1.10.0"
:description "Sente, reference web-app example project"
:url "https://github.com/ptaoussanis/sente"
:license {:name "Eclipse Public License"
Expand All @@ -15,7 +15,7 @@
[org.clojure/core.async "0.2.385"]
[org.clojure/tools.nrepl "0.2.12"] ; Optional, for Cider

[com.taoensso/sente "1.10.0-SNAPSHOT"] ; <--- Sente
[com.taoensso/sente "1.10.0"] ; <--- Sente
[com.taoensso/timbre "4.7.2"]

;;; TODO Choose (uncomment) a supported web server -----------------------
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.10.0-SNAPSHOT"
(defproject com.taoensso/sente "1.10.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Realtime web comms for Clojure/Script"
:url "https://github.com/ptaoussanis/sente"
Expand Down

0 comments on commit ef11d7b

Please sign in to comment.