1.1.7.7 release notes
This commit is contained in:
parent
3a9e115f9c
commit
1d1af59c06
|
@ -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.
|
||||
|
|
|
@ -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")
|
||||
|
||||
|
|
Loading…
Reference in New Issue