File tree Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Expand file tree Collapse file tree 2 files changed +40
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ ) .
6
+
7
+ ## [ 0.6.0] - 2016-12-13
8
+
9
+ ### Added
10
+
11
+ * Can set a custom ` CLASSPATH ` in ` Setup.hs ` from Gradle build
12
+ configurations to use when compiling inline expressions.
13
+ * GHC 8 compatibility
14
+ * Support inline expressions that compile to multiple .class files
15
+ (e.g for anonymous classes and anonymous function literals).
16
+
17
+ ### Changed
18
+
19
+ * The return type of inline expressions no longer needs
20
+ ` Reify ` /` Reflect ` instances.
21
+
22
+ ### Fixed
23
+
24
+ * Fix antiquotation: in [ java| $obj.foo() |] , ` obj ` is now recognized
25
+ as an antiquotation variable.
26
+ * Passing multiple options to the JVM using ` withJVM ` .
27
+
28
+ ## [ 0.5.0] - 2016-12-13
29
+
30
+ ### Added
31
+
32
+ * First release with support for inline Java expressions.
33
+
34
+ ### Changed
35
+
36
+ * Split lower-level and mid-level bindings into separate packages: jni
37
+ and jvm.
Original file line number Diff line number Diff line change @@ -11,7 +11,9 @@ copyright: 2015-2016 EURL Tweag.
11
11
category : FFI, JVM, Java
12
12
build-type : Simple
13
13
cabal-version : >= 1.10
14
- extra-source-files : README.md
14
+ extra-source-files :
15
+ CHANGELOG.md
16
+ README.md
15
17
extra-tmp-files :
16
18
src/Foreign/JNI.c
17
19
You can’t perform that action at this time.
0 commit comments