From 1d1af59c069aa4b4ffb35c0fce6eceefc51ede14 Mon Sep 17 00:00:00 2001 From: "Taro L. Saito" Date: Tue, 25 Aug 2020 21:16:01 -0700 Subject: [PATCH] 1.1.7.7 release notes --- Milestone.md | 3 +++ build.sbt | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Milestone.md b/Milestone.md index fe0650a..1eaa9f2 100644 --- a/Milestone.md +++ b/Milestone.md @@ -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. diff --git a/build.sbt b/build.sbt index 41b6133..d3ed0fd 100644 --- a/build.sbt +++ b/build.sbt @@ -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")