Skip to content

Commit

Permalink
Update sbt-scalajs-crossproject to 1.3.2 (#3053)
Browse files Browse the repository at this point in the history
## About this PR
πŸ“¦ Updates
[org.portable-scala:sbt-scalajs-crossproject](https://github.com/portable-scala/sbt-crossproject)
from `1.3.1` to `1.3.2`

πŸ“œ [GitHub Release
Notes](https://github.com/portable-scala/sbt-crossproject/releases/tag/v1.3.2)
- [Version
Diff](portable-scala/sbt-crossproject@v1.3.1...v1.3.2)

## 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/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/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 (1.3.1).
You might want to review and update them manually.
```
docs/release-notes.md
website/static/img/undraw_operating_system.svg
```
</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.portable-scala", artifactId = "sbt-scalajs-crossproject" } ]
```
Or, add this to slow down future updates of this dependency:
```
dependencyOverrides = [{
  pullRequests = { frequency = "30 days" },
  dependency = { groupId = "org.portable-scala", artifactId = "sbt-scalajs-crossproject" }
}]
```
</details>

<sup>
labels: sbt-plugin-update
</sup>
  • Loading branch information
xerial-bot committed Jul 7, 2023
1 parent 2cd7952 commit bb6322a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion airspec/project/plugin.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.19")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.4.5")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")

addDependencyTreePlugin
Expand Down
2 changes: 1 addition & 1 deletion examples/rpc-examples/rpc-scalajs/project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ ThisBuild / libraryDependencySchemes += "org.scala-lang.modules" %% "scala-xml"

addSbtPlugin("org.wvlet.airframe" % "sbt-airframe" % "23.7.1")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "1.13.2")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("io.spray" % "sbt-revolver" % "0.10.0")
2 changes: 1 addition & 1 deletion project/plugin.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.21")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.2.1")
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "2.0.8")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.0")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")

// For integration testing
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ sys.props.get("plugin.version") match {
}

// For Scala.js
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.1")
addSbtPlugin("org.portable-scala" % "sbt-scalajs-crossproject" % "1.3.2")
val SCALAJS_VERSION = sys.env.getOrElse("SCALAJS_VERSION", "1.13.2")
addSbtPlugin("org.scala-js" % "sbt-scalajs" % SCALAJS_VERSION)

0 comments on commit bb6322a

Please sign in to comment.