From 88e12c7f4b5e6e6efb60e8fd7e50fc2164aa3f4b Mon Sep 17 00:00:00 2001 From: Scala Steward <43047562+scala-steward@users.noreply.github.com> Date: Sun, 9 Jul 2023 04:14:59 +0200 Subject: [PATCH] Update scala3-library to 3.3.0 (#492) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [org.scala-lang:scala3-library](https://github.com/lampepfl/dotty) from `3.2.2` to `3.3.0` 📜 [GitHub Release Notes](https://github.com/lampepfl/dotty/releases/tag/3.3.0) - [Version Diff](https://github.com/lampepfl/dotty/compare/3.2.2...3.3.0) - [Version Diff](https://github.com/lampepfl/dotty/compare/release-3.2.2...release-3.3.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/92eefe9e1d9f9d829b31ff6c6f6ae9e29fb6a56c/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.scala-lang", artifactId = "scala3-library" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "org.scala-lang", artifactId = "scala3-library" } }] ```
labels: library-update, early-semver-minor, semver-spec-minor, version-scheme:semver-spec, commit-count:1 --------- Co-authored-by: Li Haoyi --- build.sc | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build.sc b/build.sc index cf6c16e05..f354015a2 100644 --- a/build.sc +++ b/build.sc @@ -17,9 +17,10 @@ import com.github.lolgab.mill.mima._ val scala212 = "2.12.18" val scala213 = "2.13.10" -val scala3 = "3.2.2" -val scalaNative = "0.4.10" +val scala3 = "3.3.0" +val scalaNative = "0.4.14" val acyclic = "0.3.8" + val sourcecode = "0.3.0" val dottyCustomVersion = Option(sys.props("dottyVersion")) @@ -124,7 +125,7 @@ trait CommonJsModule extends CommonPublishModule with ScalaJSModule with CommonP } trait CommonNativeModule extends CommonPublishModule with ScalaNativeModule with CommonPlatformModule { - def scalaNativeVersion = "0.4.10" + def scalaNativeVersion = scalaNative trait CommonTestModule extends ScalaNativeTests with CommonTestModule0 }