Skip to content

Commit 6303917

Browse files
committed
v1.0.1
1 parent 05ab74d commit 6303917

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

NEWS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
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.

build.sbt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
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

1414
organization in GlobalScope := "com.typesafe"
1515

0 commit comments

Comments
 (0)