File tree 10 files changed +13
-11
lines changed
core/src/main/scala/higherkindness/droste
scala/higherkindness/droste/tests
scala-2.13+/higherkindness/droste/tests
10 files changed +13
-11
lines changed Original file line number Diff line number Diff line change 7
7
-XX:+TieredCompilation
8
8
-XX:-UseGCOverheadLimit
9
9
-XX:+CMSClassUnloadingEnabled
10
- -XX:+UseConcMarkSweepGC
10
+ -XX:+UseG1GC
Original file line number Diff line number Diff line change
1
+ -J-XX:+UseG1GC
2
+ -J-XX:MinHeapFreeRatio=10
3
+ -J-XX:MaxHeapFreeRatio=20
4
+ -J-Xmx2g
5
+ -J-XX:MaxMetaspaceSize=600m
6
+ -J-XX:MetaspaceSize=200m
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ lazy val coverage = (project in file(".coverage"))
21
21
22
22
lazy val V = new {
23
23
val cats = " 2.9.0"
24
- val collectionCompat = " 2.12 .0"
24
+ val collectionCompat = " 2.13 .0"
25
25
val refined = " 0.10.3"
26
26
val algebra = " 2.9.0"
27
27
val atto = " 0.9.5"
Original file line number Diff line number Diff line change @@ -4,8 +4,6 @@ package stream
4
4
5
5
import cats .Monad
6
6
import cats .Monoid
7
- import cats .syntax .applicative ._
8
- import cats .syntax .functor ._
9
7
import java .util .{Iterator => JavaIterator }
10
8
import scala .annotation .tailrec
11
9
import list ._
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ import cats.syntax.applicative._
7
7
import cats .syntax .functor ._
8
8
import cats .syntax .flatMap ._
9
9
import cats .syntax .traverse ._
10
- import implicits .composedFunctor ._
11
10
12
11
/** @groupname refolds
13
12
* Refolds
File renamed without changes.
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ import org.scalacheck.Properties
10
10
import cats .Eq
11
11
import cats .syntax .all ._
12
12
import cats .laws .discipline .ArrowTests
13
- import cats .laws .discipline .eq ._
14
13
import cats .laws .discipline .DeprecatedEqInstances ._
15
14
import scala .annotation .nowarn
16
15
Original file line number Diff line number Diff line change @@ -17,8 +17,8 @@ object ProjectPlugin extends AutoPlugin {
17
17
18
18
object ScalaV {
19
19
val v212 = " 2.12.17"
20
- val v213 = " 2.13.10 "
21
- val v3 = " 3.2.1 "
20
+ val v213 = " 2.13.16 "
21
+ val v3 = " 3.3.5 "
22
22
}
23
23
24
24
object autoImport {
@@ -84,7 +84,7 @@ object ProjectPlugin extends AutoPlugin {
84
84
scalaVersion := ScalaV .v213,
85
85
libraryDependencies ++= on(2 )(
86
86
compilerPlugin(
87
- " org.typelevel" % " kind-projector" % " 0.13.2 " cross CrossVersion .full
87
+ " org.typelevel" % " kind-projector" % " 0.13.3 " cross CrossVersion .full
88
88
)
89
89
).value,
90
90
// Add some more source directories
Original file line number Diff line number Diff line change 1
- sbt.version =1.9.9
1
+ sbt.version =1.10.7
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
5
5
addSbtPlugin(" org.portable-scala" % " sbt-scala-native-crossproject" % " 1.3.2" )
6
6
addSbtPlugin(" org.scala-js" % " sbt-scalajs" % " 1.18.2" )
7
7
addSbtPlugin(" org.scala-native" % " sbt-scala-native" % " 0.5.6" )
8
- addSbtPlugin(" org.scoverage" % " sbt-scoverage" % " 2.1.1 " )
8
+ addSbtPlugin(" org.scoverage" % " sbt-scoverage" % " 2.3.0 " )
9
9
addSbtPlugin(" com.github.sbt" % " sbt-ci-release" % " 1.9.2" )
10
10
addSbtPlugin(" com.47deg" % " sbt-microsites" % " 1.4.4" )
11
11
addSbtPlugin(" org.scalameta" % " sbt-mdoc" % " 2.6.4" )
You can’t perform that action at this time.
0 commit comments