Skip to content

Commit f9d0c38

Browse files
committed
Release 0.8.2
1 parent 049f1b1 commit f9d0c38

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ target/**
1616
**/.lsp
1717
/.eastwood
1818
*.pem
19+
.cpcache

CHANGES.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### 0.8.2
2+
3+
* Bump Netty to 4.1.115.Final (CVE-2024-47535 and bug-fixes)
4+
5+
Contributions by (in alphabetical order):
6+
7+
David Ongaro
8+
19
### 0.8.1
210

311
* Bump Netty to 4.1.111.Final (only bug-fixes)

README.md

+2-2
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.8.1"]
11+
[aleph "0.8.2"]
1212
```
1313
deps.edn:
1414
```clojure
15-
aleph/aleph {:mvn/version "0.8.1"}
15+
aleph/aleph {:mvn/version "0.8.2"}
1616
;; alternatively
1717
io.github.clj-commons/aleph {:git/sha "..."}
1818
```

examples/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
(defproject aleph.examples "0.8.1"
2-
:dependencies [[aleph "0.8.1"]
1+
(defproject aleph.examples "0.8.2"
2+
:dependencies [[aleph "0.8.2"]
33
[gloss "0.2.6"]
44
[metosin/reitit "0.5.18"]
55
[org.clojure/clojure "1.11.1"]

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(def brotli-version "1.16.0")
44

55

6-
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.8.1")
6+
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.8.2")
77
:description "A framework for asynchronous communication"
88
:url "https://github.com/clj-commons/aleph"
99
:license {:name "MIT License"}

src/aleph/http/common.clj

+1-1
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.8.1"))
30+
(def aleph-server-header "Aleph value for the Server header" (AsciiString. "Aleph/0.8.2"))
3131

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

0 commit comments

Comments
 (0)