Skip to content

Commit

Permalink
Merge branch 'main' into update/mill-mima-0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
alexarchambault committed Jan 9, 2025
2 parents 9e2a89c + e1b0e5e commit be0ecd0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
SCALA_VERSION: ["2.12.19", "2.13.14", "3.3.3"]
SCALA_VERSION: ["2.12.20", "2.13.14", "3.3.3"]
steps:
- uses: actions/checkout@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .mill-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.7-118-56323c
0.11.13
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "3.8.1"
version = "3.8.3"

align.preset = more
maxColumn = 100
Expand Down
8 changes: 4 additions & 4 deletions build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import java.io.File
import scala.concurrent.duration.DurationInt

object Versions {
def scala212 = "2.12.19"
def scala212 = "2.12.20"
def scala213 = "2.13.14"
def scala3 = "3.3.3"
def scala = Seq(scala212, scala213, scala3)
Expand All @@ -21,18 +21,18 @@ object Versions {
}

object Deps {
def catsEffect = ivy"org.typelevel::cats-effect::3.5.4"
def catsEffect = ivy"org.typelevel::cats-effect::3.5.7"
def catsEffect2 = ivy"org.typelevel::cats-effect::2.5.5"
def dataClass = ivy"io.github.alexarchambault::data-class:0.2.6"
def macroParadise = ivy"org.scalamacros:::paradise:2.1.1"
def mdoc = ivy"org.scalameta::mdoc:2.5.2"
def mdoc = ivy"org.scalameta::mdoc:2.6.2"
def osLib = ivy"com.lihaoyi::os-lib::0.10.2"
def pprint = ivy"com.lihaoyi::pprint::0.9.0"
def scalaCompiler(sv: String) = ivy"org.scala-lang:scala-compiler:$sv"
def scalaReflect(sv: String) = ivy"org.scala-lang:scala-reflect:$sv"
def shapeless = ivy"com.chuusai::shapeless::2.3.12"
def sourcecode = ivy"com.lihaoyi::sourcecode::0.4.2"
def utest = ivy"com.lihaoyi::utest::0.8.3"
def utest = ivy"com.lihaoyi::utest::0.8.4"
}

object annotations extends Module {
Expand Down

0 comments on commit be0ecd0

Please sign in to comment.