Skip to content

Commit

Permalink
deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
yurique committed Sep 10, 2024
1 parent 5e7bad0 commit 87772ea
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 28 deletions.
22 changes: 3 additions & 19 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ inThisBuild(
(Test / publishArtifact) := false,
scalaVersion := ScalaVersions.v213,
crossScalaVersions := Seq(
ScalaVersions.v3RC3,
ScalaVersions.v3,
ScalaVersions.v213,
ScalaVersions.v212
),
Expand All @@ -30,8 +30,8 @@ inThisBuild(
)
)

lazy val `cats-parse-version` = "0.3.3"
lazy val `tuplez-version` = "0.3.6"
lazy val `cats-parse-version` = "1.0.0"
lazy val `tuplez-version` = "0.4.0"

lazy val `tuplez-parse` =
crossProject(JVMPlatform, JSPlatform)
Expand All @@ -54,22 +54,6 @@ lazy val commonSettings = Seq(
"junit" % "junit" % "4.13.2" % Test,
("com.novocode" % "junit-interface" % "0.11" % Test).exclude("junit", "junit-dep")
),
(Compile / doc / scalacOptions) ~= (_.filterNot(
Set(
"-scalajs",
"-deprecation",
"-explain-types",
"-explain",
"-feature",
"-language:existentials,experimental.macros,higherKinds,implicitConversions",
"-unchecked",
"-Xfatal-warnings",
"-Ykind-projector",
"-from-tasty",
"-encoding",
"utf8",
)
)),
versionPolicyIntention :=
(CrossVersion.partialVersion(scalaVersion.value) match {
case Some((3, _)) => {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ class ProductConcatTests {
)
}

P.charIn('1') ~ P.char('/') ~ P.charIn('2')

@Test def `Unit+Scalar`(): Unit = {
testParser(
parser = P.char('0') ~~ P.charIn('1'),
Expand Down
6 changes: 3 additions & 3 deletions project/ScalaVersions.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
object ScalaVersions {
val v213 = "2.13.5"
val v212 = "2.12.13"
val v3RC3 = "3.0.0-RC3"
val v213 = "2.13.14"
val v212 = "2.12.20"
val v3 = "3.3.3"
}
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.5.1
sbt.version=1.10.1
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
logLevel := Level.Warn

val scalajsVersion = scala.sys.env.getOrElse("SCALAJS_VERSION", "1.5.0")
val scalajsVersion = scala.sys.env.getOrElse("SCALAJS_VERSION", "1.16.0")

addSbtPlugin("org.scala-js" % "sbt-scalajs" % scalajsVersion)

addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.0.0")

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")

addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")

Expand All @@ -16,7 +16,7 @@ addSbtPlugin("com.codecommit" % "sbt-github-actions" % "0.10.1")

addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.6")

addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.17")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2")

addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "1.0.0-RC5")

Expand Down

0 comments on commit 87772ea

Please sign in to comment.