Skip to content

Commit

Permalink
Update release notes wrt #265
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Mar 30, 2016
1 parent a1a0282 commit c53f316
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions release-notes/CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -81,3 +81,6 @@ Lokesh Kumar N (LokeshN@github)
* Contributed fix for #117: Support for missing values (non-compliant JSON)
(2.8.0)

Mikael Staldal (mikaelstaldal@github)
* Contributed fix for #265: `JsonStringEncoder` should allow passing `CharSequence`
(2.8.0)
2 changes: 2 additions & 0 deletions release-notes/VERSION
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ JSON library.
(suggested by Gregoire C)
#255: Relax ownership checks for buffers not to require increase in size
#257: Add `writeStartObject(Object pojo)` to streamline assignment of current value
#265: `JsonStringEncoder` should allow passing `CharSequence`
(contributed by Mikael S)
#280: Add `JsonParser.finishToken()` to force full, non-lazy reading of current token

2.7.4 (not yet released)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,9 @@ public char[] quoteAsString(String input)
/**
* Method that will quote text contents using JSON standard quoting,
* and return results as a character array
*
* Use this variant if you have e.g. a {@link StringBuilder} and want to avoid superfluous copying of it.
*
* @since 2.8
*/
public char[] quoteCharSequenceAsString(CharSequence input)
{
Expand Down

0 comments on commit c53f316

Please sign in to comment.