From 04f7d7f16390811f7c6634da398a55b35d84b38e Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Sat, 2 Jul 2016 16:37:45 +0700 Subject: [PATCH] v1.9.0-RC2 --- CHANGELOG.md | 8 ++++++++ README.md | 4 ++-- example-project/project.clj | 4 ++-- project.clj | 2 +- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be588fa..10eb126 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v1.9.0-RC2 - 2016 Jul 2 + +```clojure +[com.taoensso/sente "1.9.0-RC2"] +``` + +* **Hotfix**: `:first-open?` in chsk state wasn't being correctly reset + ## v1.9.0-RC1 - 2016 Jun 23 ```clojure diff --git a/README.md b/README.md index c7fa3a9..ab98d32 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ **[CHANGELOG]** | [API] | current [Break Version]: ```clojure -[com.taoensso/sente "1.9.0-RC1"] ; BREAKING, see CHANGELOG for details +[com.taoensso/sente "1.9.0-RC2"] ; BREAKING, see CHANGELOG for details [com.taoensso/sente "1.8.1"] ; Stable ``` @@ -60,7 +60,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-RC1"] +[com.taoensso/sente "1.9.0-RC2"] ``` ### On the server (Clojure) side diff --git a/example-project/project.clj b/example-project/project.clj index 6109ec1..e37fb8a 100644 --- a/example-project/project.clj +++ b/example-project/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso.examples/sente "1.9.0-RC1" +(defproject com.taoensso.examples/sente "1.9.0-RC2" :description "Sente, reference web-app example project" :url "https://github.com/ptaoussanis/sente" :license {:name "Eclipse Public License" @@ -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.9.0-RC1"] ; <--- Sente + [com.taoensso/sente "1.9.0-RC2"] ; <--- Sente [com.taoensso/timbre "4.5.1"] ;;; TODO Choose (uncomment) a supported web server ----------------------- diff --git a/project.clj b/project.clj index 029acc6..c68dee9 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/sente "1.9.0-RC1" +(defproject com.taoensso/sente "1.9.0-RC2" :author "Peter Taoussanis " :description "Realtime web comms for Clojure/Script" :url "https://github.com/ptaoussanis/sente"