Skip to content

Commit

Permalink
Brickie updates
Browse files Browse the repository at this point in the history
  • Loading branch information
rbbowd committed Jul 28, 2024
1 parent e9438f4 commit 49bd50c
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 277 deletions.
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
version=3.8.1
version=3.8.2
runner.dialect = "scala213"
trailingCommas = preserve
5 changes: 2 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ val proxy = "https://nexus.garnercorp.com/repository/maven-all"
val commonSettings = Seq(
name := "gormorant",
organization := "com.garnercorp",
scalaVersion := "2.13.12",
scalaVersion := "2.13.14",
organizationName := "Garner",
homepage := Some(url("https://github.com/ChristopherDavenport/cormorant")),
licenses += ("MIT", url("http://opensource.org/licenses/MIT")),
Expand All @@ -32,13 +32,12 @@ val commonSettings = Seq(
},
scalacOptions ++= addScalacOptions,
addCompilerPlugin(
"org.typelevel" %% "kind-projector" % "0.13.2" cross CrossVersion.full
"org.typelevel" %% "kind-projector" % "0.13.3" cross CrossVersion.full
),
addCompilerPlugin("com.olegpy" %% "better-monadic-for" % "0.3.1"),
testFrameworks += new TestFramework("munit.Framework"),
libraryDependencies ++= Seq(
MUnitTest,
MUnitCatsEffectTest,
ScalaCheckEffectMUnit
),
(sys.env.get("NEXUS_USER"), sys.env.get("NEXUS_PASSWORD")) match {
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

13 changes: 5 additions & 8 deletions project/Libraries.scala
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,13 @@ import sbt._

object Libraries {
object Versions {
val CatsVersion = "2.10.0"
val fs2Version = "3.9.2"
val munitV = "0.7.29"
val munitCatsEffectV = "1.0.7"
val CatsVersion = "2.12.0"
val fs2Version = "3.9.4"
val munitV = "1.0.0"
val scalacheckEffectV = "1.0.4"
val RefinedVersion = "0.11.0"
val RefinedVersion = "0.11.2"
val AttoCoreVersion = "0.9.5"
val ShapelessVersion = "2.3.10"
val ShapelessVersion = "2.3.12"
}

import Versions._
Expand All @@ -26,8 +25,6 @@ object Libraries {
val CatsCore = "org.typelevel" %% "cats-core" % CatsVersion
val CatsKernel = "org.typelevel" %% "cats-kernel" % CatsVersion
val MUnitTest = "org.scalameta" %% "munit" % munitV % Test
val MUnitCatsEffectTest =
"org.typelevel" %% "munit-cats-effect-3" % munitCatsEffectV % Test
val ScalaCheckEffectMUnit =
"org.typelevel" %% "scalacheck-effect-munit" % scalacheckEffectV % Test

Expand Down
2 changes: 1 addition & 1 deletion project/build.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
sbt.version=1.9.9
sbt.version=1.10.1
14 changes: 7 additions & 7 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.3.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.10.0")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.3.2")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.2.0")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.2")
addSbtPlugin("io.github.davidgregory084" % "sbt-tpolecat" % "0.4.4")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.16.0")
addSbtPlugin("com.47deg" % "sbt-microsites" % "1.4.4")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.8")
addSbtPlugin("com.github.cb372" % "sbt-explicit-dependencies" % "0.3.1")
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "1.0.1"
ThisBuild / version := "1.0.2"

0 comments on commit 49bd50c

Please sign in to comment.