Skip to content

Commit caf5483

Browse files
committed
Merge branch 'develop' of https://github.com/xerial/snappy-java into develop
Conflicts: version.sbt
2 parents e8beabf + 7a5ddff commit caf5483

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

Milestone.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
Since vesion 1.1.0.x, Java 6 (1.6) or higher is required.
22

3+
## snappy-java-1.1.2 (22 September 2015)
4+
* This is a backward compatible release for 1.1.x.
5+
* Add AIX (32-bit) support.
6+
* There is no upgrade for the native libraries of the other platforms.
7+
* A major change since 1.1.1 is a support for reading concatenated results of SnappyOutputStream(s)
8+
39
## snappy-java-1.1.2-RC2 (18 May 2015)
410
* Fix #107: SnappyOutputStream.close() is not idempotent
511

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,15 +39,15 @@ Add the following dependency to your pom.xml:
3939
<dependency>
4040
<groupId>org.xerial.snappy</groupId>
4141
<artifactId>snappy-java</artifactId>
42-
<version>1.1.2-RC3</version>
42+
<version>1.1.2</version>
4343
<type>jar</type>
4444
<scope>compile</scope>
4545
</dependency>
4646

4747
### Using with sbt
4848

4949
```
50-
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.2-RC3"
50+
libraryDependencies += "org.xerial.snappy" % "snappy-java" % "1.1.2"
5151
```
5252

5353

@@ -75,7 +75,7 @@ In addition, high-level methods (`Snappy.compress(String)`, `Snappy.compress(flo
7575
### Stream-based API
7676
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).
7777

78-
* 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)
78+
* 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)
7979

8080
#### Compatibility Notes
8181
* `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:

0 commit comments

Comments
 (0)