Skip to content

Commit 65c025c

Browse files
committed
Release 0.9.1
1 parent 56e3075 commit 65c025c

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 0.9.1
2+
3+
* Bump Netty to 4.1.124.Final (CVE-2025-55163 and bug-fixes)
4+
5+
Contributions by (in alphabetical order):
6+
7+
Ivo Vachkov
8+
19
### 0.9.0
210

311
* New server option `:listen-socket` for passing a pre-bound listening socket (#748, #755)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ Aleph exposes data from the network as a [Manifold](https://github.com/clj-commo
88

99
Leiningen:
1010
```clojure
11-
[aleph "0.9.0"]
11+
[aleph "0.9.1"]
1212
```
1313
deps.edn:
1414
```clojure
15-
aleph/aleph {:mvn/version "0.9.0"}
15+
aleph/aleph {:mvn/version "0.9.1"}
1616
;; alternatively
1717
io.github.clj-commons/aleph {:git/sha "..."}
1818
```

examples/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
(defproject aleph.examples "0.9.0"
2-
:dependencies [[aleph "0.9.0"]
1+
(defproject aleph.examples "0.9.1"
2+
:dependencies [[aleph "0.9.1"]
33
[gloss "0.2.6"]
44
[metosin/reitit "0.9.1"]
55
[org.clojure/clojure "1.12.1"]

src/aleph/http/common.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
(set! *warn-on-reflection* true)
2929

30-
(def aleph-server-header "Aleph value for the Server header" (AsciiString. "Aleph/0.9.0"))
30+
(def aleph-server-header "Aleph value for the Server header" (AsciiString. "Aleph/0.9.1"))
3131

3232
(defprotocol HeaderMap
3333
(get-header-values [m ^String k]))

0 commit comments

Comments
 (0)