From 638cd8878dbd9332f0f7caa236299d60c75b8409 Mon Sep 17 00:00:00 2001 From: Daniel Schultz Date: Mon, 2 Sep 2024 07:20:57 +0200 Subject: [PATCH] build.sbt: Bump SpinalHDL and Scala version Bump SpinalHDL to 1.10.2a and Scala to 2.12. Signed-off-by: Daniel Schultz --- build.sbt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/build.sbt b/build.sbt index 7eb2d35..b385e91 100644 --- a/build.sbt +++ b/build.sbt @@ -1,17 +1,17 @@ -val spinalVersion = "1.10.1" +val spinalVersion = "1.10.2a" lazy val root = (project in file(".")). settings( inThisBuild(List( organization := "com.github.spinalhdl", - scalaVersion := "2.11.12", + scalaVersion := "2.12.18", version := "2.0.0" )), libraryDependencies ++= Seq( - "com.github.spinalhdl" % "spinalhdl-core_2.11" % spinalVersion, - "com.github.spinalhdl" % "spinalhdl-lib_2.11" % spinalVersion, - compilerPlugin("com.github.spinalhdl" % "spinalhdl-idsl-plugin_2.11" % spinalVersion), - "org.scalatest" %% "scalatest" % "3.2.5", + "com.github.spinalhdl" %% "spinalhdl-core" % spinalVersion, + "com.github.spinalhdl" %% "spinalhdl-lib" % spinalVersion, + compilerPlugin("com.github.spinalhdl" %% "spinalhdl-idsl-plugin" % spinalVersion), + "org.scalatest" %% "scalatest" % "3.2.17", "org.yaml" % "snakeyaml" % "1.8" ), name := "VexRiscv"