Skip to content

Commit b60bcd4

Browse files
committed
Release 0.7.0-rc2
1 parent 544561d commit b60bcd4

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

CHANGES.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### 0.7.0-rc2
2+
3+
* Include Brotli and zstd deps by default, remove code treating them as optional
4+
5+
Contribution by Matthew Davidson.
6+
17
### 0.7.0-rc1
28

39
* Added HTTP/2 server support
@@ -7,7 +13,7 @@ Contributions by Matthew Davidson, Moritz Heidkamp, and Arnaud Geiser.
713

814
### 0.7.0-alpha2
915

10-
* Enable SSL/TLS certificate hostname verification by default in the client. (Warning: This is a BREAKING change for those with misconfigured server certificates.)
16+
* Enable SSL/TLS certificate hostname verification by default in the client. (Warning: This is a BREAKING change for those with misconfigured server certificat~es.)
1117

1218
Contribution by Moritz Heidkamp.
1319

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.7.0-rc1"]
11+
[aleph "0.7.0-rc2"]
1212
```
1313
deps.edn:
1414
```clojure
15-
aleph/aleph {:mvn/version "0.7.0-rc1"}
15+
aleph/aleph {:mvn/version "0.7.0-rc2"}
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.7.0-rc1"
2-
:dependencies [[aleph "0.7.0-rc1"]
1+
(defproject aleph.examples "0.7.0-rc2"
2+
:dependencies [[aleph "0.7.0-rc2"]
33
[gloss "0.2.6"]
44
[metosin/reitit "0.5.18"]
55
[org.clojure/clojure "1.11.1"]

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(def brotli-version "1.12.0")
44

55

6-
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.7.0-rc1")
6+
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.7.0-rc2")
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

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.7.0-rc1"))
30+
(def aleph-server-header "Aleph value for the Server header" (AsciiString. "Aleph/0.7.0-rc2"))
3131

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

0 commit comments

Comments
 (0)