From 91e6b4a128a2fbd55f45b40cbd20f4c3539de64e Mon Sep 17 00:00:00 2001 From: Jozef Koval Date: Fri, 14 Mar 2025 15:40:28 +0100 Subject: [PATCH] Update scala and scorex-util. --- .../src/main/scala/scorex.benchmarks/Base16Benchmark.scala | 2 +- build.sbt | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/benchmarks/src/main/scala/scorex.benchmarks/Base16Benchmark.scala b/benchmarks/src/main/scala/scorex.benchmarks/Base16Benchmark.scala index 98c6b996..88b33c5c 100644 --- a/benchmarks/src/main/scala/scorex.benchmarks/Base16Benchmark.scala +++ b/benchmarks/src/main/scala/scorex.benchmarks/Base16Benchmark.scala @@ -6,7 +6,7 @@ import org.openjdk.jmh.profile.GCProfiler import org.openjdk.jmh.runner.options.OptionsBuilder import org.openjdk.jmh.runner.{Runner, RunnerException} import scorex.benchmarks.Base16Benchmark.BenchmarkState -import scorex.crypto.encode.Base16 +import scorex.util.encode.Base16 import scala.util.Random diff --git a/build.sbt b/build.sbt index 61d35d7b..e0282cc4 100644 --- a/build.sbt +++ b/build.sbt @@ -6,7 +6,7 @@ organization := "org.scorexfoundation" lazy val scala211 = "2.11.12" lazy val scala212 = "2.12.20" -lazy val scala213 = "2.13.13" +lazy val scala213 = "2.13.16" lazy val scala3 = "3.3.5" lazy val scalatestVersion = "3.2.19" @@ -36,7 +36,7 @@ lazy val commonSettings = Seq( ), libraryDependencies ++= { val base = Seq( - ("org.scorexfoundation" %%% "scorex-util" % "0.2.1").cross(CrossVersion.for3Use2_13), + "org.scorexfoundation" %%% "scorex-util" % "0.2.2", "org.scalatest" %%% "scalatest" % scalatestVersion % Test, "org.scalatest" %%% "scalatest-propspec" % scalatestVersion % Test, "org.scalatest" %%% "scalatest-shouldmatchers" % scalatestVersion % Test,