File tree Expand file tree Collapse file tree 4 files changed +12
-10
lines changed
Expand file tree Collapse file tree 4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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"
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" ]
Original file line number Diff line number Diff line change 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"
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" ]
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" ]
You can’t perform that action at this time.
0 commit comments