Skip to content

Commit f585e4e

Browse files
committed
v1.19.1 (2023-07-18)
1 parent cdefd04 commit f585e4e

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md).
22

3+
## `1.19.1` (2023-07-18)
4+
5+
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.1)
6+
7+
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.
8+
9+
This is a safe update for users of `1.19.0`.
10+
11+
312
## `1.19.0` (2023-07-13)
413

514
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.0)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Loosely inspired by [Socket.IO](https://socket.io/), it uses **core.async**, **W
1515
1616
## Latest release
1717

18-
- 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)
18+
- 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)
1919

2020
<!--- [![tests][tests badge]][tests status] -->
2121

example-project/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.19.0"
1+
(defproject com.taoensso.examples/sente "1.19.1"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"
@@ -15,7 +15,7 @@
1515
[org.clojure/core.async "1.6.673"]
1616
[nrepl "1.0.0"] ; Optional, for Cider
1717

18-
[com.taoensso/sente "1.19.0"] ; <--- Sente
18+
[com.taoensso/sente "1.19.1"] ; <--- Sente
1919
[com.taoensso/timbre "6.2.2"]
2020

2121
;;; TODO Choose (uncomment) a supported web server -----------------------

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/sente "1.19.0"
1+
(defproject com.taoensso/sente "1.19.1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Realtime web comms for Clojure/Script"
44
:url "https://github.com/ptaoussanis/sente"

src/taoensso/sente.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
#?(:clj (:import [org.java_websocket.client WebSocketClient])))
9393

9494
(enc/assert-min-encore-version [3 62 1])
95-
(def sente-version "Useful for identifying client/server mismatch" [1 18 2])
95+
(def sente-version "Useful for identifying client/server mismatch" [1 19 1])
9696

9797
#?(:cljs (def ^:private node-target? (= *target* "nodejs")))
9898

0 commit comments

Comments
 (0)