Skip to content

Commit 07640ce

Browse files
committed
Release 0.7.0-alpha1
1 parent 9818c6f commit 07640ce

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

CHANGES.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 0.7.0-alpha1
2+
3+
* Add support for HTTP/2 in the client.
4+
5+
Contributions by Matthew Davidson and Arnaud Geiser.
6+
17
### 0.6.3
28

39
* Bump Netty to 4.1.94.Final for CVE-2023-34462

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.6.3"]
11+
[aleph "0.7.0-alpha1"]
1212
```
1313
deps.edn:
1414
```clojure
15-
aleph/aleph {:mvn/version "0.6.3"}
15+
aleph/aleph {:mvn/version "0.7.0-alpha1"}
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.6.3"
2-
:dependencies [[aleph "0.6.3"]
1+
(defproject aleph.examples "0.7.0-alpha1"
2+
:dependencies [[aleph "0.7.0-alpha1"]
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
@@ -1,7 +1,7 @@
11
;; you'll need to run the script at `deps/lein-to-deps` after changing any dependencies
22
(def netty-version "4.1.94.Final")
33

4-
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.6.3")
4+
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.7.0-alpha1")
55
:description "A framework for asynchronous communication"
66
:url "https://github.com/clj-commons/aleph"
77
:license {:name "MIT License"}

src/aleph/http/server.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
(map #(HttpHeaders/newEntity %) ["Server" "Connection" "Date" "Content-Type"])
100100

101101
[server-value keep-alive-value close-value]
102-
(map #(HttpHeaders/newEntity %) ["Aleph/0.6.3" "Keep-Alive" "Close"])]
102+
(map #(HttpHeaders/newEntity %) ["Aleph/0.7.0-alpha1" "Keep-Alive" "Close"])]
103103
(defn send-response
104104
[^ChannelHandlerContext ctx keep-alive? ssl? error-handler rsp]
105105
(let [[^HttpResponse rsp body]

0 commit comments

Comments
 (0)