Skip to content

Commit 19fd100

Browse files
committed
Add a change log file.
1 parent 8afccf9 commit 19fd100

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
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.

inline-java.cabal

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@ copyright: 2015-2016 EURL Tweag.
1111
category: FFI, JVM, Java
1212
build-type: Simple
1313
cabal-version: >=1.10
14-
extra-source-files: README.md
14+
extra-source-files:
15+
CHANGELOG.md
16+
README.md
1517
extra-tmp-files:
1618
src/Foreign/JNI.c
1719

0 commit comments

Comments
 (0)