Skip to content

Commit 0783f22

Browse files
committed
Backport changes from main
1 parent b64a96e commit 0783f22

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+5038
-4490
lines changed

Diff for: .github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
java: [1.8, 1.11, 1.14]
15-
scala: [2.12.13, 2.13.4]
15+
scala: [2.12.14, 2.13.6]
1616
steps:
1717
- uses: actions/checkout@v2
1818
- name: Set up JDK ${{ matrix.java }}

Diff for: .github/workflows/mima.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
java: [1.14]
15-
scala: [2.12.13, 2.13.4]
15+
scala: [2.12.14, 2.13.6]
1616
steps:
1717
- uses: actions/checkout@v2
1818
with:

Diff for: .github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
java: [1.14]
18-
scala: [2.12.13, 2.13.4]
18+
scala: [2.12.14, 2.13.6]
1919
steps:
2020
- uses: actions/checkout@v2
2121
with:

Diff for: .gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ target/
77
/.ensime
88
/.idea/
99
/.idea_modules/
10+
/.bsp
1011

1112
.cache
1213
.classpath

Diff for: build.sbt

+2-4
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@ import spray.revolver.RevolverPlugin._
44

55
import com.typesafe.sbt.SbtGit.git
66

7-
import scala.util.Properties.envOrNone
8-
97
import Dependencies._, RhoPlugin._
108

119
lazy val rho = project
@@ -29,7 +27,7 @@ lazy val `rho-core` = project
2927
case _ => Nil
3028
}
3129
},
32-
libraryDependencies ++= Seq("org.scala-lang.modules" %% "scala-collection-compat" % "2.4.4")
30+
libraryDependencies ++= Seq("org.scala-lang.modules" %% "scala-collection-compat" % "2.5.0")
3331
)
3432

3533
lazy val `rho-swagger` = project
@@ -133,7 +131,7 @@ lazy val buildSettings = publishing ++
133131
`scala-reflect` % scalaVersion.value
134132
)
135133
else Seq.empty),
136-
libraryDependencies ++= specs2
134+
libraryDependencies ++= Seq(munit, munitCatsEffect, scalacheckMunit)
137135
)
138136

139137
// to keep REPL usable

0 commit comments

Comments
 (0)