File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 1+ # 1.0.1: May 19, 2013
2+
3+ - when an array is requested and an object found, try to convert
4+ the object to an array if the object has numeric keys in it.
5+ This is intended to support ` -Dfoo.0=bar, -Dfoo.1=baz ` which
6+ would create ` foo : { "0" : "bar", "1" : "baz" } ` ; which in
7+ turn could now be treated as if it were `foo :
8+ [ "bar","baz"] `. This is useful for creating array values on the
9+ command line using Java system properties.
10+ - fix a ConcurrentModificationException if an app modified
11+ system properties while we were trying to parse them.
12+ - fix line numbering in error messages for newlines within triple
13+ quotes.
14+
115# 1.0.0: October 15, 2012
216
317 - no changes from 0.6.0. ABI now guaranteed for 1.0.x series.
Original file line number Diff line number Diff line change 99// Versions and git tags should follow: http://semver.org/
1010// except using -SNAPSHOT instead of without hyphen.
1111
12- version in GlobalScope := " 1.0.0-SNAPSHOT "
12+ version in GlobalScope := " 1.0.1 "
1313
1414organization in GlobalScope := " com.typesafe"
1515
You can’t perform that action at this time.
0 commit comments