Update news/readme for 1.3.0

This commit is contained in:
Havoc Pennington 2015-05-08 11:44:34 -04:00
parent 46b4f64f2a
commit b0ae5cac20
2 changed files with 21 additions and 3 deletions

10
NEWS.md
View File

@ -1,3 +1,13 @@
# 1.3.0: May 8, 2015
- no changes from 1.3.0-M3
- this is an ABI-guaranteed stable release.
- 1.3.0 should be ABI-compatible with 1.2.x for most applications,
though there are enough changes to corner cases and
implementation that some obscure things could break. Please see
the notes for the 1.3.0 milestones below for details, especially
for 1.3.0-M1.
# 1.3.0-M3: April 21, 2015
- this is an ABI-not-guaranteed beta release in advance

View File

@ -93,19 +93,19 @@ The license is Apache 2.0, see LICENSE-2.0.txt.
### Binary Releases
Version 1.2.1 and earlier were built for Java 6, while newer
versions (1.3.0-M1 is the current beta) will be built for Java 8.
versions (1.3.0 and above) will be built for Java 8.
You can find published releases on Maven Central.
<dependency>
<groupId>com.typesafe</groupId>
<artifactId>config</artifactId>
<version>1.2.1</version>
<version>1.3.0</version>
</dependency>
sbt dependency:
libraryDependencies += "com.typesafe" % "config" % "1.2.1"
libraryDependencies += "com.typesafe" % "config" % "1.3.0"
Link for direct download if you don't use a dependency manager:
@ -752,6 +752,14 @@ If you have trouble with your configuration, some useful tips.
Currently the library is maintained against Java 8, but
version 1.2.1 and earlier will work with Java 6.
Please use 1.2.1 if you need Java 6 support, though some people
have expressed interest in a branch off of 1.3.0 supporting
Java 7. If you want to work on that branch you might bring it up
on [chat](https://gitter.im/typesafehub/config). We can release a
jar for Java 7 if someone(s) steps up to maintain the branch. The
master branch does not use Java 8 "gratuitously" but some APIs
that use Java 8 types will need to be removed.
### Rationale for Supported File Formats
(For the curious.)