Skip to content

Commit

Permalink
Scala-Steward Updates Aggregated (#10)
Browse files Browse the repository at this point in the history
* creating steward branch

* Update sbt-pgp to 2.2.1 (#2)

Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com>

* Update sbt-mima-plugin to 1.1.3 (#3)

Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com>
Co-authored-by: Ahmad Ragab <[email protected]>

* Update cats-core to 2.10.0 (#8)

Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com>

* Update zio-interop-cats to 23.0.0.8 (#4)

Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com>
Co-authored-by: Ahmad Ragab <[email protected]>

* Update sbt-scalafmt to 2.5.0 (#6)

Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com>
Co-authored-by: Ahmad Ragab <[email protected]>

* Update scalafmt-core to 3.7.12 (#7)

* Update scalafmt-core to 3.7.12

* Reformat with scalafmt 3.7.12

Executed command: scalafmt --non-interactive

* Add 'Reformat with scalafmt 3.7.12' to .git-blame-ignore-revs

---------

Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com>
Co-authored-by: Ahmad Ragab <[email protected]>

* finalizing steward branch

---------

Co-authored-by: scala-steward-asragab[bot] <142696383+scala-steward-asragab[bot]@users.noreply.github.com>
  • Loading branch information
ASRagab and scala-steward-asragab[bot] authored Aug 21, 2023
1 parent 855a36e commit 66590b0
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 8 deletions.
2 changes: 2 additions & 0 deletions .git-blame-ignore-revs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Scala Steward: Reformat with scalafmt 3.7.12
0c3e403a353afe9d4decad5021bc1b41904c9dd8
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
tags: ["v*"]

concurrency:
group: ${{ github.ref }}
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/scala-steward.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,5 @@ jobs:
with:
github-app-id: ${{ secrets.APP_ID }}
github-app-installation-id: ${{ secrets.APP_INSTALLATION_ID }}
github-app-key: ${{ secrets.APP_PRIVATE_KEY }}
github-app-key: ${{ secrets.APP_PRIVATE_KEY }}
branches: steward
2 changes: 1 addition & 1 deletion .scalafmt.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version="3.7.10"
version="3.7.12"
runner.dialect=scala3
align.preset=most
maxColumn=120
5 changes: 3 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ object V {
}

object Dependencies {
lazy val cats = "org.typelevel" %% "cats-core" % "2.9.0"
lazy val cats = "org.typelevel" %% "cats-core" % "2.10.0"
lazy val catsEffect = "org.typelevel" %% "cats-effect" % "3.5.1"
lazy val catsEffectTesting = "org.typelevel" %% "cats-effect-testing-scalatest" % "1.5.0" % Test

Expand All @@ -26,11 +26,12 @@ object Dependencies {
lazy val zioTest = "dev.zio" %% "zio-test" % V.zio
lazy val zio = "dev.zio" %% "zio" % V.zio
lazy val zioTestSbt = "dev.zio" %% "zio-test-sbt" % V.zio
lazy val zioCats = "dev.zio" %% "zio-interop-cats" % "23.0.0.5"
lazy val zioCats = "dev.zio" %% "zio-interop-cats" % "23.0.0.8"
lazy val zioSlf4j = "dev.zio" %% "zio-logging-slf4j" % "2.1.14"

lazy val loggingFrontend = "ch.qos.logback" % "logback-classic" % "1.4.7"


lazy val core: Seq[ModuleID] = Seq(
cats,
catsEffect,
Expand Down
6 changes: 3 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.1.2")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.6")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12")
addSbtPlugin("com.github.sbt" % "sbt-site-paradox" % "1.5.0")
addSbtPlugin("io.github.jonas" % "sbt-paradox-material-theme" % "0.6.0")
addSbtPlugin("com.github.sbt" % "sbt-ghpages" % "0.8.0")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.2")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "1.1.3")
addSbtPlugin("nl.gn0s1s" % "sbt-dotenv" % "3.0.0")
addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.0")
1 change: 1 addition & 0 deletions version.sbt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

0 comments on commit 66590b0

Please sign in to comment.