Skip to content

Commit 03cc8ff

Browse files
committed
v1.18.0 (2023-06-30)
1 parent 7889a0b commit 03cc8ff

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md).
22

3+
## `1.18.0` (2023-06-30)
4+
5+
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.0)
6+
7+
Same as `1.18.0-RC1`, except addresses a possible build issue [#429].
8+
9+
310
## `1.18.0-RC1` (2023-05-30)
411

512
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.0-RC1)

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ Loosely inspired by [Socket.IO](https://socket.io/), it uses **core.async**, **W
1313

1414
> **Sen-te** (先手) is a Japanese [Go](https://en.wikipedia.org/wiki/Go_(game)) term used to describe a play with such an overwhelming follow-up that it demands an immediate response, leaving its player with the initiative.
1515
16-
## Latest releases
16+
## Latest release
1717

18-
- 2023-05-30: `1.18.0-RC1` (dev): [release notes](https://github.com/ptaoussanis/sente/releases/tag/v1.18.0-RC1) | [Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.0-RC1)
19-
- 2022-06-13: `1.17.0` (stable): [release notes](https://github.com/ptaoussanis/sente/releases/tag/v1.17.0) | [Clojars](https://clojars.org/com.taoensso/sente/versions/1.17.0)
18+
- 2023-06-30: `1.18.0` - [release notes](https://github.com/ptaoussanis/sente/releases/tag/v1.18.0) | [Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.0)
2019

2120
<!--- [![tests][tests badge]][tests status] -->
2221

@@ -59,4 +58,4 @@ Copyright &copy; 2014-2023 [Peter Taoussanis][], licensed under [EPL 1.0][] (sam
5958
<!--- Repo links -->
6059
[API docs]: http://ptaoussanis.github.io/sente/
6160
[tests badge]: https://github.com/ptaoussanis/sente/actions/workflows/tests.yml/badge.svg
62-
[tests status]: https://github.com/ptaoussanis/sente/actions/workflows/tests.yml
61+
[tests status]: https://github.com/ptaoussanis/sente/actions/workflows/tests.yml

example-project/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.18.0-RC1"
1+
(defproject com.taoensso.examples/sente "1.18.0"
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.18.0-RC1"] ; <--- Sente
18+
[com.taoensso/sente "1.18.0"] ; <--- Sente
1919
[com.taoensso/timbre "6.2.1"]
2020

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

project.clj

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

0 commit comments

Comments
 (0)