Skip to content

Commit 82df5f1

Browse files
committed
v1.7.0-RC1
1 parent fd7dd4e commit 82df5f1

File tree

4 files changed

+12
-10
lines changed

4 files changed

+12
-10
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,18 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3-
## v1.7.0-beta2 - 2015 Sep 3
3+
## v1.7.0-RC1 - 2015 Sep 28
44

55
> This is a significant non-breaking feature release. Includes an important fix for Immutant users.
66
77
* **New**: add `nginx-clojure` server adapter [#160 @xfeep]
88
* **New**: add `:error-handler` option to standard chsk routers
99
* **New**: `make-channel-socket!` now accepts an optional :params map [#158 #135 @danielcompton]
1010
* **New**: include `:client-id` with Ajax long-polling requests [#155 @akhudek]
11+
* **New**: `cb-error?` convenience fn = `(complement cb-success?)`
1112
* **Fix**: Immutant v2.1.0+ adapter now supports timeouts to prevent lp socket leaks [#150 @tobias]
1213

1314
```clojure
14-
[com.taoensso/sente "1.7.0-beta2"]
15+
[com.taoensso/sente "1.7.0-RC1"]
1516
```
1617

1718

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
**[API docs][]** | **[CHANGELOG][]** | [other Clojure libs][] | [Twitter][] | [contact/contrib](#contact--contributing) | current [Break Version][]:
22

33
```clojure
4-
[com.taoensso/sente "1.6.0"] ; Stable
5-
[com.taoensso/sente "1.7.0-beta2"] ; Dev, see CHANGELOG for details
4+
[com.taoensso/sente "1.6.0"] ; Stable
5+
[com.taoensso/sente "1.7.0-RC1"] ; Dev, see CHANGELOG for details
66
```
77

88
# Sente, channel sockets for Clojure

example-project/project.clj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.7.0-beta2"
1+
(defproject com.taoensso.examples/sente "1.7.0-RC1"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"
@@ -17,8 +17,8 @@
1717

1818
[org.clojure/core.async "0.1.346.0-17112a-alpha"]
1919

20-
[com.taoensso/sente "1.7.0-beta2"] ; <--- Sente
21-
[com.taoensso/timbre "4.1.1"]
20+
[com.taoensso/sente "1.7.0-RC1"] ; <--- Sente
21+
[com.taoensso/timbre "4.1.2"]
2222

2323
;;; ---> Choose (uncomment) a supported web server <---
2424
[http-kit "2.1.19"]

project.clj

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/sente "1.7.0-beta2"
1+
(defproject com.taoensso/sente "1.7.0-RC1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Clojure channel sockets library"
44
:url "https://github.com/ptaoussanis/sente"
@@ -20,9 +20,10 @@
2020
:profiles
2121
{;; :default [:base :system :user :provided :dev]
2222
:server-jvm {:jvm-opts ^:replace ["-server"]}
23+
:1.5 {:dependencies [[org.clojure/clojure "1.5.1"]]}
2324
:1.6 {:dependencies [[org.clojure/clojure "1.6.0"]]}
2425
:1.7 {:dependencies [[org.clojure/clojure "1.7.0"]]}
25-
:1.8 {:dependencies [[org.clojure/clojure "1.8.0-alpha2"]]}
26+
:1.8 {:dependencies [[org.clojure/clojure "1.8.0-alpha5"]]}
2627
:test {:dependencies [[com.cognitect/transit-clj "0.8.281"]
2728
[com.cognitect/transit-cljs "0.8.225"]
2829
[expectations "2.1.0"]
@@ -78,7 +79,7 @@
7879
#(.replaceFirst (str %) "(.cljs$|.clj$)" ".cljx")}}
7980

8081
:aliases
81-
{"test-all" ["with-profile" "default:+1.6:+1.7:+1.8" "expectations"]
82+
{"test-all" ["with-profile" "+1.6:+1.7:+1.8" "expectations"]
8283
"test-auto" ["with-profile" "+test" "autoexpect"]
8384
"build-once" ["do" "cljx" "once," "cljsbuild" "once"]
8485
"deploy-lib" ["do" "build-once," "deploy" "clojars," "install"]

0 commit comments

Comments
 (0)