From 81efadf351a25d89fbddb9b0203c58d6fd88e903 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Wed, 19 Jun 2024 09:20:00 -0700 Subject: [PATCH] Update sbt-mdoc to 2.5.3 (#3566) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.scalameta:sbt-mdoc](https://github.com/scalameta/mdoc) from `2.5.2` to `2.5.3` 📜 [GitHub Release Notes](https://github.com/scalameta/mdoc/releases/tag/v2.5.3) - [Version Diff](https://github.com/scalameta/mdoc/compare/v2.5.2...v2.5.3) ## 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!_
🔍 Files still referring to the old version number The following files still refer to the old version number (2.5.2). You might want to review and update them manually. ``` examples/rpc-examples/hello-rpc/project/plugins.sbt project/plugin.sbt sbt-airframe/project/plugin.sbt website/static/img/undraw_monitor.svg ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "org.scalameta", artifactId = "sbt-mdoc" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.scalameta", artifactId = "sbt-mdoc" } }] ```
labels: sbt-plugin-update --- project/plugin.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugin.sbt b/project/plugin.sbt index 94f25319a..f39d6eddc 100755 --- a/project/plugin.sbt +++ b/project/plugin.sbt @@ -38,7 +38,7 @@ addSbtPlugin("org.scala-native" % "sbt-scala-native" % "0.5.3") addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1") // Documentation -addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.2") +addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.3") // For generating Lexer/Parser from ANTLR4 grammar (.g4) addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3")