Skip to content

Commit

Permalink
Release 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
DerGuteMoritz committed Jun 4, 2024
1 parent cb0a22d commit 079cb2e
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
### 0.8.0

* BREAKING: Make brotli and zstd optional again (#723)
* Bump Manifold to 0.4.3 for improved clj-kondo exports
* Bump Netty to 4.1.110.Final (fixes CVE-2024-29025)
* Add initial support for cancelling HTTP client requests (#714)
* Add `connect-timeout` client option (#715)
* Drop fixed HTTP server shutdown timeout (#709)
* Demote insecure/cleartext HTTP pipeline warn log (#719)

Contributions by Moritz Heidkamp, Matthew Davidson, and Arnaud Geiser.

Manifold contributions by Jacob Maine and Ferdinand Beyer

### 0.7.1

* Bump Manifold to 0.4.2 to fix Promesa print-method hierarchy bug
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ Aleph exposes data from the network as a [Manifold](https://github.com/clj-commo

Leiningen:
```clojure
[aleph "0.7.1"]
[aleph "0.8.0"]
```
deps.edn:
```clojure
aleph/aleph {:mvn/version "0.7.1"}
aleph/aleph {:mvn/version "0.8.0"}
;; alternatively
io.github.clj-commons/aleph {:git/sha "..."}
```
Expand Down
4 changes: 2 additions & 2 deletions examples/project.clj
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
(defproject aleph.examples "0.7.1"
:dependencies [[aleph "0.7.1"]
(defproject aleph.examples "0.8.0"
:dependencies [[aleph "0.8.0"]
[gloss "0.2.6"]
[metosin/reitit "0.5.18"]
[org.clojure/clojure "1.11.1"]
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
(def brotli-version "1.16.0")


(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.7.1")
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.8.0")
:description "A framework for asynchronous communication"
:url "https://github.com/clj-commons/aleph"
:license {:name "MIT License"}
Expand Down
2 changes: 1 addition & 1 deletion src/aleph/http/common.clj
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

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

(def aleph-server-header "Aleph value for the Server header" (AsciiString. "Aleph/0.7.1"))
(def aleph-server-header "Aleph value for the Server header" (AsciiString. "Aleph/0.8.0"))

(defprotocol HeaderMap
(get-header-values [m ^String k]))
Expand Down

0 comments on commit 079cb2e

Please sign in to comment.