Skip to content

Commit

Permalink
Merge pull request #6 from tpolecat/update-deps
Browse files Browse the repository at this point in the history
update dependencies
  • Loading branch information
tpolecat authored Mar 31, 2021
2 parents 6656655 + a6e26ae commit f44ffe8
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
8 changes: 4 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

// Our Scala versions.
lazy val `scala-3.0` = "3.0.0-RC1"
lazy val `scala-3.0-prev` = "3.0.0-M3"
lazy val `scala-3.0` = "3.0.0-RC2"
lazy val `scala-3.0-prev` = "3.0.0-RC1"
lazy val `scala-2.12` = "2.12.12"
lazy val `scala-2.13` = "2.13.5"

Expand All @@ -17,7 +17,7 @@ developers := List(
// Headers
headerMappings := headerMappings.value + (HeaderFileType.scala -> HeaderCommentStyle.cppStyleLineComment)
headerLicense := Some(HeaderLicense.Custom(
"""|Copyright (c) 2020 by Rob Norris
"""|Copyright (c) 2020-2021 by Rob Norris
|This software is licensed under the MIT License (MIT).
|For more information see LICENSE or https://opensource.org/licenses/MIT
|""".stripMargin
Expand All @@ -35,7 +35,7 @@ Compile / doc / scalacOptions ++= Seq(
)

// MUnit
libraryDependencies += "org.scalameta" %% "munit" % "0.7.22" % Test
libraryDependencies += "org.scalameta" %% "munit" % "0.7.23" % Test
testFrameworks += new TestFramework("munit.Framework")

// Scala 2 needs scala-reflect
Expand Down
12 changes: 6 additions & 6 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.5")
addSbtPlugin("com.geirsson" % "sbt-ci-release" % "1.5.7")
addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.6.0")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.9.1")
addSbtPlugin("com.lightbend.paradox" % "sbt-paradox" % "0.9.2")
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "1.4.1")
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.6.3")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.1")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.16")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.14")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.2")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.1.17")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.2.19")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.1")
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.3")
addSbtPlugin("ch.epfl.lamp" % "sbt-dotty" % "0.5.4")
2 changes: 1 addition & 1 deletion project/project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.4.3")
addSbtPlugin("com.timushev.sbt" % "sbt-updates" % "0.5.2")
2 changes: 1 addition & 1 deletion src/main/scala-2/TypeNamePlatform.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020 by Rob Norris
// Copyright (c) 2020-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala-3/TypeNamePlatform.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020 by Rob Norris
// Copyright (c) 2020-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/TypeName.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020 by Rob Norris
// Copyright (c) 2020-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/package.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020 by Rob Norris
// Copyright (c) 2020-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion src/test/scala-2/Test.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020 by Rob Norris
// Copyright (c) 2020-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down
2 changes: 1 addition & 1 deletion src/test/scala-3/Test.scala
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2020 by Rob Norris
// Copyright (c) 2020-2021 by Rob Norris
// This software is licensed under the MIT License (MIT).
// For more information see LICENSE or https://opensource.org/licenses/MIT

Expand Down

0 comments on commit f44ffe8

Please sign in to comment.