File tree Expand file tree Collapse file tree 6 files changed +11
-11
lines changed
main/scala/io/bullet/borer/cbor
test/scala/io/bullet/borer Expand file tree Collapse file tree 6 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 1- version = 3.5 . 9
1+ version = 3.6 . 1
22
33align.preset = more
44assumeStandardLibraryStripMargin = true
Original file line number Diff line number Diff line change 11import sbtcrossproject .CrossPlugin .autoImport .{crossProject , CrossType }
22import sbt ._
33
4- def scala3 = " 3.2.0 "
4+ def scala3 = " 3.2.1 "
55
66inThisBuild(
77 List (
@@ -105,7 +105,7 @@ lazy val releaseSettings = {
105105val `akka-actor` = Def .setting(" com.typesafe.akka" %% " akka-actor-typed" % " 2.6.20" )
106106val `akka-stream` = Def .setting(" com.typesafe.akka" %% " akka-stream" % " 2.6.20" )
107107val `akka-http` = Def .setting(" com.typesafe.akka" %% " akka-http" % " 10.2.10" )
108- val `cats-core` = Def .setting(" org.typelevel" %%% " cats-core" % " 2.8 .0" )
108+ val `cats-core` = Def .setting(" org.typelevel" %%% " cats-core" % " 2.9 .0" )
109109val `circe-core` = Def .setting(" io.circe" %%% " circe-core" % " 0.14.3" )
110110val `circe-parser` = Def .setting(" io.circe" %%% " circe-parser" % " 0.14.3" )
111111val `circe-generic` = Def .setting(" io.circe" %%% " circe-generic" % " 0.14.3" )
Original file line number Diff line number Diff line change @@ -109,7 +109,7 @@ final private[borer] class CborRenderer(var out: Output) extends Renderer:
109109 } else out.writeAsByte(0x18 + majorType)
110110 } else {
111111 v += majorType; out
112- }) .writeByte(v.toByte)
112+ }).writeByte(v.toByte)
113113
114114object CborRenderer extends (Output => CborRenderer ):
115115 def apply (out : Output ) = new CborRenderer (out)
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ abstract class AbstractJsonSuiteSpec extends AbstractBorerSpec:
7777
7878 roundTrip(" 1.0E300" , 1.0e+300 )
7979
80- roundTrip(" [2.10233856E8 ]" , List (2.10233856e8f ))
80+ roundTrip(" [2.1023386E8 ]" , List (2.1023386e8f ))
8181
8282 roundTrip(" -4.0" , - 4.0f )
8383 roundTrip(" -4.0" , - 4.0 )
Original file line number Diff line number Diff line change 1- sbt.version =1.7.2
1+ sbt.version =1.7.3
Original file line number Diff line number Diff line change 1- addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.4.6 " )
1+ addSbtPlugin(" org.scalameta" % " sbt-scalafmt" % " 2.5.0 " )
22addSbtPlugin(" io.crashbox" % " sbt-gpg" % " 0.2.1" )
33addSbtPlugin(" com.github.sbt" % " sbt-release" % " 1.1.0" )
4- addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 3.9.13 " )
5- addSbtPlugin(" de.heikoseeberger" % " sbt-header" % " 5.7 .0" )
4+ addSbtPlugin(" org.xerial.sbt" % " sbt-sonatype" % " 3.9.15 " )
5+ addSbtPlugin(" de.heikoseeberger" % " sbt-header" % " 5.9 .0" )
66addSbtPlugin(" io.spray" % " sbt-boilerplate" % " 0.6.1" )
7- addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.11 .0" )
7+ addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.12 .0" )
88addSbtPlugin(" org.portable-scala" % " sbt-scalajs-crossproject" % " 1.2.0" )
99addSbtPlugin(" pl.project13.scala" % " sbt-jmh" % " 0.4.3" )
10- addSbtPlugin(" com.lightbend.paradox" % " sbt-paradox" % " 0.10.2 " )
10+ addSbtPlugin(" com.lightbend.paradox" % " sbt-paradox" % " 0.10.3 " )
1111addSbtPlugin(" io.bullet" % " sbt-paradox-material-theme" % " 0.7.0" )
1212addSbtPlugin(" com.typesafe.sbt" % " sbt-ghpages" % " 0.6.3" )
1313addSbtPlugin(" com.typesafe.sbt" % " sbt-site" % " 1.4.1" )
You can’t perform that action at this time.
0 commit comments