From 2902c04ecc28db996fb23d8319e6a1afbec3d0ac Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Tue, 16 Jun 2015 12:59:04 +0900 Subject: [PATCH] Fix version --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index c5fb69d..7537780 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-RC1 + 1.1.2-RC3 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-RC1" +libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.2-RC3" ``` @@ -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-RC1/snappy-java-1.1.2-RC1-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-RC3/snappy-java-1.1.2-RC3-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: