Skip to content

Commit 6841c19

Browse files
committed
Release 0.5.0
1 parent cf2df5e commit 6841c19

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616
* Disable misleading logs during tests
1717
* Switch to Netty's `FastThreadLocalThread` for threads
1818
* Ensure `wrap-future` callbacks have thread bindings and a full classloader chain
19+
* Fix minor reflection warning in HttpContentCompressor ctor
20+
* Add missing direct dependency on Dirigiste
1921

2022
Contributions by Arnaud Geiser, Moritz Heidkamp, Erik Assum, Ivar Refsdal, and Matthew Davidson
2123

README.md

Lines changed: 3 additions & 3 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.5.0-rc2"]
11+
[aleph "0.5.0"]
1212
```
1313
deps.edn:
1414
```clojure
15-
aleph/aleph {:mvn/version "0.5.0-rc2"}
15+
aleph/aleph {:mvn/version "0.5.0"}
1616
```
1717

1818
### HTTP
@@ -123,7 +123,7 @@ Where incoming packets will have a `:message` that is a byte-array, which can be
123123

124124
To learn more, [read the documentation](http://aleph.io/examples/literate.html).
125125

126-
### license
126+
### License
127127

128128
Copyright © 2010-2020 Zachary Tellman
129129

examples/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
(defproject aleph.examples "0.5.0"
2-
:dependencies [[aleph "0.5.0-rc3"]
2+
:dependencies [[aleph "0.5.0"]
33
[gloss "0.2.6"]
44
[compojure "1.6.1"]
55
[org.clojure/clojure "1.11.1"]

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
[org.clj-commons/primitive-math "1.0.0"]
1919
[potemkin "0.4.5"]])
2020

21-
(defproject aleph "0.5.0-rc3"
21+
(defproject aleph (or (System/getenv "PROJECT_VERSION") "0.5.0")
2222
:description "A framework for asynchronous communication"
2323
:repositories {"jboss" "https://repository.jboss.org/nexus/content/groups/public/"
2424
"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"}

0 commit comments

Comments
 (0)