This commit is contained in:
Havoc Pennington 2013-05-19 20:40:30 -04:00
parent 05ab74d15d
commit 6303917eaa
2 changed files with 15 additions and 1 deletions

14
NEWS.md
View File

@ -1,3 +1,17 @@
# 1.0.1: May 19, 2013
- when an array is requested and an object found, try to convert
the object to an array if the object has numeric keys in it.
This is intended to support `-Dfoo.0=bar, -Dfoo.1=baz` which
would create `foo : { "0" : "bar", "1" : "baz" }`; which in
turn could now be treated as if it were `foo :
["bar","baz"]`. This is useful for creating array values on the
command line using Java system properties.
- fix a ConcurrentModificationException if an app modified
system properties while we were trying to parse them.
- fix line numbering in error messages for newlines within triple
quotes.
# 1.0.0: October 15, 2012
- no changes from 0.6.0. ABI now guaranteed for 1.0.x series.

View File

@ -9,7 +9,7 @@
// Versions and git tags should follow: http://semver.org/
// except using -SNAPSHOT instead of without hyphen.
version in GlobalScope := "1.0.0-SNAPSHOT"
version in GlobalScope := "1.0.1"
organization in GlobalScope := "com.typesafe"