From 9aba0004b1e69e8df7eb658faad8f2f116477bb4 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Fri, 10 Nov 2023 12:17:05 -0800 Subject: [PATCH] Update sbt-mdoc to 2.5.1 (#3268) 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.0` to `2.5.1` 📜 [GitHub Release Notes](https://github.com/scalameta/mdoc/releases/tag/v2.5.1) - [Version Diff](https://github.com/scalameta/mdoc/compare/v2.5.0...v2.5.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/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/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.0). You might want to review and update them manually. ``` airframe-control/src/main/scala/wvlet/airframe/control/Control.scala docs/airspec.md docs/release-notes.md website/static/img/undraw_operating_system.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 5a0b042ae1..4ea2cb12fd 100755 --- a/project/plugin.sbt +++ b/project/plugin.sbt @@ -28,7 +28,7 @@ libraryDependencies ++= ( addSbtPlugin("com.github.sbt" % "sbt-dynver" % "5.0.1") // Documentation -addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.0") +addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.1") // For generating Lexer/Parser from ANTLR4 grammar (.g4) addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3")