From e7d901d8af9200c7046155ba9637b0219b70f4f5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Marks?= Date: Tue, 12 Apr 2022 15:46:29 +0200 Subject: [PATCH] Update Scala version to 3.1.2 --- README.md | 2 +- build.sc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 72a9149..5936523 100644 --- a/README.md +++ b/README.md @@ -21,7 +21,7 @@ Any version number that starts with `3.` is automatically recognized as Scala 3; you don't need to set up anything: ```scala -def scalaVersion = "3.1.1" +def scalaVersion = "3.1.2" ``` #### Nightly builds diff --git a/build.sc b/build.sc index c35d1fc..8fdc2d8 100644 --- a/build.sc +++ b/build.sc @@ -2,6 +2,6 @@ import mill._, scalalib._ object root extends SbtModule { def millSourcePath = ammonite.ops.pwd - def scalaVersion = "3.1.1" + def scalaVersion = "3.1.2" def publishVersion = "0.1.0" }