From 63b31b409857a5f95ece78195415bce017f0626e Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Tue, 22 Sep 2015 13:31:33 -0700 Subject: [PATCH 1/3] Release notes on 1.1.2 --- Milestone.md | 6 ++++++ README.md | 6 +++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/Milestone.md b/Milestone.md index 20b267a..389fef9 100644 --- a/Milestone.md +++ b/Milestone.md @@ -1,5 +1,11 @@ Since vesion 1.1.0.x, Java 6 (1.6) or higher is required. +## snappy-java-1.1.2 (22 September 2015) + * This is a backward compatible release for 1.1.x. + * Add AIX (32-bit) support. + * There is no upgrade for the native libraries of the other platforms. + * A major change since 1.1.1 is a support for reading concatenated results of SnappyOutputStream(s) + ## snappy-java-1.1.2-RC2 (18 May 2015) * Fix #107: SnappyOutputStream.close() is not idempotent diff --git a/README.md b/README.md index b493031..e98538c 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.2-RC3 + 1.1.2 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.2-RC3" +libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.2" ``` @@ -75,7 +75,7 @@ In addition, high-level methods (`Snappy.compress(String)`, `Snappy.compress(flo ### Stream-based API Stream-based compressor/decompressor `SnappyOutputStream`/`SnappyInputStream` are also available for reading/writing large data sets. `SnappyFramedOutputStream`/`SnappyFramedInputStream` can be used for the [framing format](https://code.google.com/p/snappy/source/browse/trunk/framing_format.txt). - * See also [Javadoc API](https://oss.sonatype.org/service/local/repositories/releases/archive/org/xerial/snappy/snappy-java/1.1.2-RC3/snappy-java-1.1.2-RC3-javadoc.jar/!/index.html) + * See also [Javadoc API](https://oss.sonatype.org/service/local/repositories/releases/archive/org/xerial/snappy/snappy-java/1.1.2/snappy-java-1.1.2-javadoc.jar/!/index.html) #### Compatibility Notes * `SnappyOutputStream` and `SnappyInputStream` use `[magic header:16 bytes]([block size:int32][compressed data:byte array])*` format. You can read the result of `Snappy.compress` with `SnappyInputStream`, but you cannot read the compressed data generated by `SnappyOutputStream` with `Snappy.uncompress`. Here is the compatibility matrix of data foramt: From eaac67b703ecfeb98cb3b62ea3949be9f6572b93 Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Tue, 22 Sep 2015 13:32:13 -0700 Subject: [PATCH 2/3] Setting version to 1.1.2 --- version.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sbt b/version.sbt index 67cefc0..5b00d60 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "1.1.2-SNAPSHOT" \ No newline at end of file +version in ThisBuild := "1.1.2" \ No newline at end of file From 7a5ddff89df568492e0d1f6de6b7348ff262f62c Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Tue, 22 Sep 2015 13:32:46 -0700 Subject: [PATCH 3/3] Setting version to 1.1.3-SNAPSHOT --- version.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.sbt b/version.sbt index 5b00d60..19dbe54 100644 --- a/version.sbt +++ b/version.sbt @@ -1 +1 @@ -version in ThisBuild := "1.1.2" \ No newline at end of file +version in ThisBuild := "1.1.3-SNAPSHOT" \ No newline at end of file