Skip to content

Commit

Permalink
Update Scala to 2.13.15 and sbt-scoverage to 2.2.1 (#3652)
Browse files Browse the repository at this point in the history
## About this PR
πŸ“¦ Updates
[org.scoverage:sbt-scoverage](https://github.com/scoverage/sbt-scoverage)
from `2.2.0` to `2.2.1`

πŸ“œ [GitHub Release
Notes](https://github.com/scoverage/sbt-scoverage/releases/tag/v2.2.1) -
[Version
Diff](scoverage/sbt-scoverage@v2.2.0...v2.2.1)

## Usage
βœ… **Please merge!**

I'll automatically update this PR to resolve conflicts as long as you
don't change it yourself.

If you'd like to skip this version, you can just close this PR. If you
have any feedback, just mention me in the comments below.

Configure Scala Steward for your repository with a
[`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/7ec418cd5441d449f037bca6d34326534c07a5dd/docs/repo-specific-configuration.md)
file.

_Have a fantastic day writing Scala!_

<details>
<summary>πŸ” Files still referring to the old version number</summary>

The following files still refer to the old version number (2.2.0).
You might want to review and update them manually.
```
docs/release-notes.md
```
</details>
<details>
<summary>βš™ Adjust future updates</summary>

Add this to your `.scala-steward.conf` file to ignore future updates of
this dependency:
```
updates.ignore = [ { groupId = "org.scoverage", artifactId = "sbt-scoverage" } ]
```
Or, add this to slow down future updates of this dependency:
```
dependencyOverrides = [{
  pullRequests = { frequency = "30 days" },
  dependency = { groupId = "org.scoverage", artifactId = "sbt-scoverage" }
}]
```
</details>

<sup>
labels: sbt-plugin-update
</sup>

---------

Co-authored-by: Taro L. Saito <leo@xerial.org>
  • Loading branch information
xerial-bot and xerial authored Sep 25, 2024
1 parent bf9e720 commit 3f0fd47
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions airspec/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ addCommandAlias(
Global / onChangedBuildSource := ReloadOnSourceChanges

val SCALA_2_12 = "2.12.20"
val SCALA_2_13 = "2.13.14"
val SCALA_2_13 = "2.13.15"
val SCALA_3 = "3.3.3"
val targetScalaVersions = SCALA_3 :: SCALA_2_13 :: SCALA_2_12 :: Nil

Expand Down Expand Up @@ -130,7 +130,8 @@ def excludePomDependency(excludes: Seq[String]) = { node: XmlNode =>
}).transform(node).head
}

/** AirSpec build definitions.
/**
* AirSpec build definitions.
*
* To make AirSpec a standalone library without any cyclic project references, AirSpec embeds the source code of
* airframe-log, di, surface, etc.
Expand Down
2 changes: 1 addition & 1 deletion airspec/project/plugin.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml"

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.19")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.5")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import scalajsbundler.JSDOMNodeJSEnv
import xerial.sbt.pack.PackPlugin.{projectSettings, publishPackArchiveTgz}

val SCALA_2_12 = "2.12.20"
val SCALA_2_13 = "2.13.14"
val SCALA_2_13 = "2.13.15"
val SCALA_3 = "3.3.3"
val uptoScala2 = SCALA_2_13 :: SCALA_2_12 :: Nil
val targetScalaVersions = SCALA_3 :: uptoScala2
Expand Down
2 changes: 1 addition & 1 deletion examples/rx-demo/gallery/build.sbt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Global / onChangedBuildSource := ReloadOnSourceChanges

val AIRFRAME_VERSION = "24.9.1"
ThisBuild / scalaVersion := "2.13.14"
ThisBuild / scalaVersion := "2.13.15"

lazy val gallery =
project
Expand Down
2 changes: 1 addition & 1 deletion project/plugin.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml"

addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.3")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.0")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.2.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
Expand Down

0 comments on commit 3f0fd47

Please sign in to comment.