Skip to content

Commit 1d6818e

Browse files
committed
Fixed error when not in JDK 14 environment
1 parent 8933e98 commit 1d6818e

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

build.sbt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
val _version = "0.6.0"
1+
val _version = "0.6.1"
22
val isRelease = System.getProperty("release") == "true"
33

44
def specs2(scope: String, name: String = "core") = Def.setting {
@@ -24,6 +24,7 @@ val compileOptions = Seq(
2424
)
2525

2626
val compilerSettings = Seq(
27+
javacOptions := Seq("-source", "1.8", "-target", "1.8"),
2728
scalacOptions ++= compileOptions,
2829
scalacOptions in Compile in doc ++= {
2930
val base = baseDirectory.value

notes/0.6.1.markdown

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
## Fixed
2+
* Fixed error `java.lang.AssertionError: unsafe symbol Ignore` when not in JDK 14 environment
3+
4+
[all changes](https://github.com/aselab/scala-activerecord/compare/0.6.0...0.6.1)

0 commit comments

Comments
 (0)