diff options
author | Erlang/OTP <[email protected]> | 2015-06-23 10:24:26 +0200 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2015-06-23 10:24:26 +0200 |
commit | 2955ddebc32837b66d9bacb4e925ad0ed0033168 (patch) | |
tree | d6bff1708a209ee317a1d1bbb78d237a999bfd23 /lib/jinterface | |
parent | 7cff27e14e051b6ee15f564335eb8e685e1639c1 (diff) | |
download | otp-2955ddebc32837b66d9bacb4e925ad0ed0033168.tar.gz otp-2955ddebc32837b66d9bacb4e925ad0ed0033168.tar.bz2 otp-2955ddebc32837b66d9bacb4e925ad0ed0033168.zip |
Prepare release
Diffstat (limited to 'lib/jinterface')
-rw-r--r-- | lib/jinterface/doc/src/notes.xml | 60 | ||||
-rw-r--r-- | lib/jinterface/vsn.mk | 2 |
2 files changed, 61 insertions, 1 deletions
diff --git a/lib/jinterface/doc/src/notes.xml b/lib/jinterface/doc/src/notes.xml index 1590a0fdff..d9f7ae9f92 100644 --- a/lib/jinterface/doc/src/notes.xml +++ b/lib/jinterface/doc/src/notes.xml @@ -31,6 +31,66 @@ </header> <p>This document describes the changes made to the Jinterface application.</p> +<section><title>Jinterface 1.6</title> + + <section><title>Fixed Bugs and Malfunctions</title> + <list> + <item> + <p> + Reformat the sources for JInterface uniformly and + according to the standard Java style guidelines. Provide + description of the rules applied in Eclipse format (for + other editors one can check the settings against these).</p> + <p> + In short, the formatting style is: * indentation uses + only spaces; each level is 4 positions * no trailing + whitespace * mostly default Java style formatting (any + difference is minor) * always use {} blocks * use 'final' + as much as possible</p> + <p> + Own Id: OTP-12333</p> + </item> + <item> + <p> + Remove extra @param in javadoc as this gives an error + when building the docs in java 1.8</p> + <p> + Own Id: OTP-12746</p> + </item> + </list> + </section> + + + <section><title>Improvements and New Features</title> + <list> + <item> + <p> + Add basic transport factory implementation. This makes + possible creating connections between nodes using ssh + channels for example.</p> + <p> + Own Id: OTP-12686</p> + </item> + <item> + <p> + Add Jinterface generic match and bind methods to provide + low level interface base methods sufficient for variety + of higher level pattern matching/variable binding + implementations.</p> + <p> + Own Id: OTP-12691</p> + </item> + <item> + <p> + Minimal Java version is now 1.6</p> + <p> + Own Id: OTP-12715</p> + </item> + </list> + </section> + +</section> + <section><title>Jinterface 1.5.12</title> <section><title>Fixed Bugs and Malfunctions</title> diff --git a/lib/jinterface/vsn.mk b/lib/jinterface/vsn.mk index 72ad316333..4df01d1151 100644 --- a/lib/jinterface/vsn.mk +++ b/lib/jinterface/vsn.mk @@ -1 +1 @@ -JINTERFACE_VSN = 1.5.12 +JINTERFACE_VSN = 1.6 |