From 64ad8837c370cd28a3c6e11c438fd12847e0f268 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Tue, 5 Sep 2023 04:36:26 -0700 Subject: [PATCH] Update sbt-jmh to 0.4.6 (#3190) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [pl.project13.scala:sbt-jmh](https://github.com/sbt/sbt-jmh) from `0.4.5` to `0.4.6` 📜 [GitHub Release Notes](https://github.com/sbt/sbt-jmh/releases/tag/v0.4.6) - [Version Diff](https://github.com/sbt/sbt-jmh/compare/v0.4.5...v0.4.6) ## 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 = "pl.project13.scala", artifactId = "sbt-jmh" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "pl.project13.scala", artifactId = "sbt-jmh" } }] ```
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 f38c92f3c1..6559bedaa0 100755 --- a/project/plugin.sbt +++ b/project/plugin.sbt @@ -34,7 +34,7 @@ addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.3.7") addSbtPlugin("com.simplytyped" % "sbt-antlr4" % "0.8.3") // For JMH benchmark -addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.5") +addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.6") addSbtPlugin("org.xerial.sbt" % "sbt-pack" % "0.17") scalacOptions ++= Seq("-deprecation", "-feature")