diff --git a/CHANGELOG.md b/CHANGELOG.md index a376fdc..92e631e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md). +## `1.19.1` (2023-07-18) + +> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.1) + +Identical to `1.19.0`, but synchronizes Encore dependency with my recent library releases (Timbre, Tufte, Sente, Carmine, etc.) to prevent confusion caused by dependency conflicts. + +This is a safe update for users of `1.19.0`. + + ## `1.19.0` (2023-07-13) > 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.0) diff --git a/README.md b/README.md index d897798..f550752 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Loosely inspired by [Socket.IO](https://socket.io/), it uses **core.async**, **W ## Latest release -- 2023-07-13: `1.19.0` - [release notes](https://github.com/ptaoussanis/sente/releases/tag/v1.19.0) | [Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.0) +- 2023-07-18: `1.19.1` - [release notes](https://github.com/ptaoussanis/sente/releases/tag/v1.19.1) | [Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.1) diff --git a/example-project/project.clj b/example-project/project.clj index 658c0d7..1909abe 100644 --- a/example-project/project.clj +++ b/example-project/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso.examples/sente "1.19.0" +(defproject com.taoensso.examples/sente "1.19.1" :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 "1.6.673"] [nrepl "1.0.0"] ; Optional, for Cider - [com.taoensso/sente "1.19.0"] ; <--- Sente + [com.taoensso/sente "1.19.1"] ; <--- Sente [com.taoensso/timbre "6.2.2"] ;;; TODO Choose (uncomment) a supported web server ----------------------- diff --git a/project.clj b/project.clj index 4b92a68..63ec504 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/sente "1.19.0" +(defproject com.taoensso/sente "1.19.1" :author "Peter Taoussanis " :description "Realtime web comms for Clojure/Script" :url "https://github.com/ptaoussanis/sente" diff --git a/src/taoensso/sente.cljc b/src/taoensso/sente.cljc index 3f1f446..3adb639 100644 --- a/src/taoensso/sente.cljc +++ b/src/taoensso/sente.cljc @@ -92,7 +92,7 @@ #?(:clj (:import [org.java_websocket.client WebSocketClient]))) (enc/assert-min-encore-version [3 62 1]) -(def sente-version "Useful for identifying client/server mismatch" [1 18 2]) +(def sente-version "Useful for identifying client/server mismatch" [1 19 1]) #?(:cljs (def ^:private node-target? (= *target* "nodejs")))