Skip to content

Commit 49fce37

Browse files
committed
Add javac-option to force 1.8-compatible classes
1 parent 697d79c commit 49fce37

File tree

2 files changed

+17
-5
lines changed

2 files changed

+17
-5
lines changed

CHANGES.md

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,21 @@
11
### 0.4.7
22

3-
Contributions by (in alphebetical order):
3+
Contributions by (in alphabetical order):
44

5-
Erik Assum, Yoan Blanc, Reynald Borer, Michael Cameron, Jonathan Chen, Matthew Davidson, Rafal Dittwald, Ganesh Gautam,
6-
Aaron Muir Hamilton, Moritz Heidkamp, Alexey Kachayev, Dominic Pearson, Matthew Phillips, Denis Shilov, Zach Tellman,
7-
Mark Wardle, Alexander Yakushev
5+
Erik Assum, Yoan Blanc, Reynald Borer, Michael Cameron, Jonathan Chen, Daniel Compton, Matthew Davidson, Rafal Dittwald,
6+
Ganesh Gautam, Aaron Muir Hamilton, Moritz Heidkamp, Alexey Kachayev, Dominic Pearson, Matthew Phillips, Denis Shilov,
7+
Zach Tellman, Mark Wardle, and Alexander Yakushev
8+
9+
#### 0.4.7-rc3
10+
11+
* Bumped up Netty to 4.1.65.Final for a regression
12+
* Added `javac` options to force 1.8-compatible classes
13+
14+
#### 0.4.7-rc2
15+
16+
* Fixed regression compiling for later Java 17
17+
18+
#### 0.4.7-rc1
819

920
* Remove unused Travis config
1021
* Remove test dependency on /usr/share/dict/words

project.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
[org.clj-commons/byte-streams "0.2.10"]
1717
[potemkin "0.4.5"]])
1818

19-
(defproject aleph "0.4.7-rc2"
19+
(defproject aleph "0.4.7-rc3"
2020
:description "A framework for asynchronous communication"
2121
:repositories {"jboss" "https://repository.jboss.org/nexus/content/groups/public/"
2222
"sonatype-oss-public" "https://oss.sonatype.org/content/groups/public/"}
@@ -61,4 +61,5 @@
6161
#_"-XX:+PrintCompilation"
6262
#_"-XX:+UnlockDiagnosticVMOptions"
6363
#_"-XX:+PrintInlining"]
64+
:javac-options ["-target" "1.8" "-source" "1.8"]
6465
:global-vars {*warn-on-reflection* true})

0 commit comments

Comments
 (0)