1.1.7.7 release notes

This commit is contained in:
Taro L. Saito 2020-08-25 21:16:01 -07:00
parent 3a9e115f9c
commit 1d1af59c06
No known key found for this signature in database
GPG Key ID: 42575E0CCD6BA16A
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,8 @@
Since version 1.1.0.x, Java 6 (1.6) or higher is required.
## snappy-java-1.1.7.7 (2020-08-25)
* Built snappy-java with jdk8 to resolve #251 (java.lang.NoSuchMethodError)
## snappy-java-1.1.7.6 (2020-06-26)
* Added an experimental support of pure-java Snappy https://github.com/xerial/snappy-java#using-pure-java-snappy-implementation
* Pure-java snappy doesn't support Snappy.isValidCompressedBuffer methods, but the other methods, Snappy.compress, uncompress, SnappyInput/OutputStream, SnappyFramedInput/OutputStream, etc., should work as expected.

View File

@ -19,7 +19,7 @@ developers := List(
scalaVersion in ThisBuild := "2.12.11"
// For building jars for JDK7
// For building jars for JDK8
javacOptions in ThisBuild ++= Seq("-source", "1.8", "-target", "1.8")
javacOptions in (Compile, compile) ++= Seq("-encoding", "UTF-8", "-Xlint:unchecked", "-Xlint:deprecation")