-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Ready for 1.3, version bumps and deprecated old combinator
- Loading branch information
Showing
18 changed files
with
287 additions
and
206 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
parsley-cats/shared/src/main/scala-2.12/parsley/cats/MonoidKForParsley.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
parsley-cats/shared/src/main/scala-2.13+/parsley/cats/MonoidKForParsley.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
parsley-cats/shared/src/main/scala/parsley/cats/DeferForParsley.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
parsley-cats/shared/src/main/scala/parsley/cats/FunctorFilterForParsley.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
parsley-cats/shared/src/main/scala/parsley/cats/FunctorForParsley.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
parsley-cats/shared/src/main/scala/parsley/cats/instances.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 3 additions & 1 deletion
4
parsley-cats/shared/src/main/scala/parsley/catsinstances.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5 changes: 5 additions & 0 deletions
5
parsley-cats/shared/src/test/scala/parsley/cats/CatsSuite.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 4 additions & 2 deletions
6
parsley-cats/shared/src/test/scala/parsley/cats/CombinatorTests.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.8.2 | ||
sbt.version=1.9.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,16 @@ | ||
val sbtTypelevelVersion = "0.4.19" | ||
val sbtTypelevelVersion = "0.6.5" | ||
|
||
libraryDependencySchemes ++= Seq( | ||
"org.scala-native" % "sbt-scala-native" % VersionScheme.Always, | ||
"org.scala-lang.modules" %% "scala-xml" % VersionScheme.Always, | ||
) | ||
|
||
//addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion) // disabled because I don't want headers and formatting checks | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel-settings" % sbtTypelevelVersion) | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel-ci-release" % sbtTypelevelVersion) | ||
addSbtPlugin("org.typelevel" % "sbt-typelevel" % sbtTypelevelVersion) | ||
|
||
// Cross Project Setup | ||
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0") | ||
addSbtPlugin("org.portable-scala" % "sbt-scala-native-crossproject" % "1.2.0") | ||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.11.0") | ||
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.8") | ||
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2") | ||
addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.4.15") | ||
|
||
// Other | ||
// This is here purely to enable the niceness settings | ||
addSbtPlugin("ch.epfl.scala" % "sbt-bloop" % "1.4.8") | ||
addSbtPlugin("com.beautiful-scala" % "sbt-scalastyle" % "1.5.1") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.5") | ||
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.2.7") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.9") | ||
addSbtPlugin("com.timushev.sbt" % "sbt-rewarn" % "0.1.3") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters