Skip to content

Commit c6a0688

Browse files
committed
v0.6.0 publish
1 parent c38e849 commit c6a0688

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

NEWS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# 0.6.0: October 10, 2012
2+
3+
- add ConfigRenderOptions.setJson which can be used to enable or
4+
disable the use of HOCON extensions (other than comments, which
5+
remain separately-controlled). Right now setJson(false) will
6+
result in a somewhat prettier rendering using extensions.
7+
- add ConfigFactory.invalidateCaches() to support reloading
8+
system properties (mostly this is intended for use in
9+
unit tests).
10+
- make ConfigException serializable, in case you have some
11+
logging system or similar that relies on that. Serialization
12+
of ConfigException is not guaranteed to be compatible across
13+
releases.
14+
115
# 0.5.2: September 6, 2012
216

317
- add versions of ConfigFactory.load() which let you specify

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Maven Central.
4444
<dependency>
4545
<groupId>com.typesafe</groupId>
4646
<artifactId>config</artifactId>
47-
<version>0.5.2</version>
47+
<version>0.6.0</version>
4848
</dependency>
4949

5050
Obsolete releases are here, but you probably don't want these:

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 := "0.5.3-SNAPSHOT"
12+
version in GlobalScope := "0.6.0"
1313

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

0 commit comments

Comments
 (0)