# HG changeset patch # User Jaroslav Tulach # Date 1409067367 -7200 # Node ID 60ba914d805cc7e923e18f573435efeca4d8ace4 # Parent e37388a5f7d162df20de2c2ac431918cd0b7914e Documenting the mutable array change in Javadoc overview page diff -r e37388a5f7d1 -r 60ba914d805c json/src/main/java/org/apidesign/html/json/spi/Proto.java --- a/json/src/main/java/org/apidesign/html/json/spi/Proto.java Tue Aug 26 17:35:37 2014 +0200 +++ b/json/src/main/java/org/apidesign/html/json/spi/Proto.java Tue Aug 26 17:36:07 2014 +0200 @@ -806,7 +806,7 @@ return type.cast(val); } - /** Special dealing with array & {@link List} values. This method + /** Special dealing with array & {@link List} values. This method * takes the provided collection, empties it and fills it again * with values extracted from value (which is supposed * to be an array). diff -r e37388a5f7d1 -r 60ba914d805c src/main/javadoc/overview.html --- a/src/main/javadoc/overview.html Tue Aug 26 17:35:37 2014 +0200 +++ b/src/main/javadoc/overview.html Tue Aug 26 17:36:07 2014 +0200 @@ -75,6 +75,14 @@ yet the application code can be written in Java.

+

What's New in Version 1.0?

+ +

+ {@link net.java.html.json.Property#array() Array properties} are now + mutable from the knockout.js + point of view (required {@link org.apidesign.html.json.spi.Proto.Type#replaceValue one SPI change}). +

+

What's New in Version 0.9?