From 50e67d710e3b435de1dcfd12b832074f154bfaeb Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Wed, 13 May 2015 10:59:43 +0900 Subject: [PATCH] Add 1.1.2-RC1 release notes --- Milestone.md | 7 ++++++- README.md | 4 ++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Milestone.md b/Milestone.md index 083d022..7b13660 100644 --- a/Milestone.md +++ b/Milestone.md @@ -1,6 +1,11 @@ Since vesion 1.1.0.x, Java 6 (1.6) or higher is required. -## snappy-java-1.1.1.7 (14 Apr 2014) +## snappy-java-1.1.2-RC1 (13 May 2015) + * SnappyInputStream now supports reading concatenated compressed results of SnappyOutputStream + * There has been no compressed format change since 1.0.5.x. So You can read the compressed results interchangeablly between these versions. + * Fixes a problem when java.io.tmpdir does not exist. + +## snappy-java-1.1.1.7 (14 Apr 2015) * Fixes #100 ## snappy-java-1.1.1.6 (26 Oct 2014) diff --git a/README.md b/README.md index 9101617..be8e08c 100755 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ Add the following dependency to your pom.xml: org.xerial.snappy snappy-java - 1.1.1.7 + 1.1.2-RC1 jar compile @@ -47,7 +47,7 @@ Add the following dependency to your pom.xml: ### Using with sbt ``` -libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.1.7" +libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.2-RC1" ```