Skip to content

Commit 60c6f10

Browse files
committed
Update dependencies
1 parent cd87653 commit 60c6f10

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.scalafmt.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version = 3.5.9
1+
version = 3.6.1
22

33
align.preset = more
44
assumeStandardLibraryStripMargin = true

build.sbt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import sbtcrossproject.CrossPlugin.autoImport.{crossProject, CrossType}
22
import sbt._
33

4-
def scala3 = "3.2.0"
4+
def scala3 = "3.2.1"
55

66
inThisBuild(
77
List(
@@ -105,7 +105,7 @@ lazy val releaseSettings = {
105105
val `akka-actor` = Def.setting("com.typesafe.akka" %% "akka-actor-typed" % "2.6.20")
106106
val `akka-stream` = Def.setting("com.typesafe.akka" %% "akka-stream" % "2.6.20")
107107
val `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")
109109
val `circe-core` = Def.setting("io.circe" %%% "circe-core" % "0.14.3")
110110
val `circe-parser` = Def.setting("io.circe" %%% "circe-parser" % "0.14.3")
111111
val `circe-generic` = Def.setting("io.circe" %%% "circe-generic" % "0.14.3")

core/src/main/scala/io/bullet/borer/cbor/CborRenderer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

114114
object CborRenderer extends (Output => CborRenderer):
115115
def apply(out: Output) = new CborRenderer(out)

core/src/test/scala/io/bullet/borer/AbstractJsonSuiteSpec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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)

project/build.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
sbt.version=1.7.2
1+
sbt.version=1.7.3

project/plugins.sbt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
1+
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
22
addSbtPlugin("io.crashbox" % "sbt-gpg" % "0.2.1")
33
addSbtPlugin("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")
66
addSbtPlugin("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")
88
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
99
addSbtPlugin("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")
1111
addSbtPlugin("io.bullet" % "sbt-paradox-material-theme" % "0.7.0")
1212
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
1313
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")

0 commit comments

Comments
 (0)