From 26d6f6594320d5ec0a68bcbe76d5b20d8b814424 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Wed, 18 Oct 2023 16:40:54 -0700 Subject: [PATCH] Update sbt-mdoc to 2.4.0 (#3250) 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.3.8` to `2.4.0` 📜 [GitHub Release Notes](https://github.com/scalameta/mdoc/releases/tag/v2.4.0) - [Version Diff](https://github.com/scalameta/mdoc/compare/v2.3.8...v2.4.0) ## 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!_
âš™ 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 ea5dfb3d24..46fc319f0e 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.3.8") +addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.4.0") // For generating Lexer/Parser from ANTLR4 grammar (.g4) addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3")