Skip to content

Commit a604f6c

Browse files
committed
Bump Scala 2.12 to 2.12.21
1 parent 8c3e19b commit a604f6c

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

modules/directives/src/main/scala/scala/build/preprocessing/directives/Plugin.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import scala.build.preprocessing.directives.DirectiveUtil.*
1111
import scala.cli.commands.SpecificationLevel
1212

1313
@DirectiveGroupName("Compiler plugins")
14-
@DirectiveExamples("//> using plugin org.typelevel:::kind-projector:0.13.2")
14+
@DirectiveExamples("//> using plugin org.typelevel:::kind-projector:0.13.4")
1515
@DirectiveUsage(
1616
"//> using plugin org:name:ver | //> using plugins org:name:ver org2:name2:ver2",
1717
"`using plugin` _org_`:`_name_`:`_ver_"

modules/integration/src/test/scala/scala/cli/integration/CompileTests212.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class CompileTests212 extends CompileTestDefinitions with Test212 {
1515
|""".stripMargin
1616
)
1717

18-
val kindProjectPlugin = "org.typelevel:::kind-projector:0.13.3"
18+
val kindProjectPlugin = "org.typelevel:::kind-projector:0.13.4"
1919

2020
test("should compile with compiler plugin") {
2121
pluginInputs.fromRoot { root =>

project/deps/package.mill.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ object Cli {
1111
}
1212

1313
object Scala {
14-
def scala212 = "2.12.20"
14+
def scala212 = "2.12.21"
1515
def scala213 = "2.13.18"
1616
def scala3LtsPrefix = "3.3" // used for the LTS version tags
1717
def scala3Lts = s"$scala3LtsPrefix.7" // the LTS version currently used in the build

website/docs/cookbooks/introduction/scala-versions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,15 +106,15 @@ scala-cli ScalaVersion.scala version.scala
106106
Scala: 2\.12\.
107107
-->
108108

109-
The output at the time of this writing is "`2.12.18`".
109+
The output at the time of this writing is "`2.12.21`".
110110

111111
The Scala CLI philosophy is “command line first,” so any configuration information that’s passed to the command line will override `using` directives. So when you run this command with the `-S` option:
112112

113113
```bash
114114
scala-cli -S 2.13.15 ScalaVersion.scala version.scala
115115
```
116116

117-
the result is "`2.13.15`" (as opposed to "`2.12.18`" in the previous example).
117+
the result is "`2.13.15`" (as opposed to "`2.12.21`" in the previous example).
118118

119119
<!-- Expected-regex:
120120
Scala: 2\.13\.15

website/docs/reference/directives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Adds compiler plugins
6767
`using plugin` _org_`:`_name_`:`_ver_
6868

6969
#### Examples
70-
`//> using plugin org.typelevel:::kind-projector:0.13.2`
70+
`//> using plugin org.typelevel:::kind-projector:0.13.4`
7171

7272
### Compute Version
7373

website/docs/reference/scala-command/directives.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Adds compiler plugins
4949
`using plugin` _org_`:`_name_`:`_ver_
5050

5151
#### Examples
52-
`//> using plugin org.typelevel:::kind-projector:0.13.2`
52+
`//> using plugin org.typelevel:::kind-projector:0.13.4`
5353

5454
### Dependency
5555

website/docs/reference/scala-versions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ it is recommended to update scala-cli.
3535
| 1.8.5 - 1.9.0 | 3.7.2 | 2.13.16 | 2.12.20 |
3636
| 1.9.1 | 3.7.3 | 2.13.16 | 2.12.20 |
3737
| 1.10.0 - 1.10.1 | 3.7.4 | 2.13.17 | 2.12.20 |
38-
| 1.10.2 - current | 3.7.4 | 2.13.18 | 2.12.20 |
38+
| 1.10.2 - current | 3.7.4 | 2.13.18 | 2.12.21 |
3939

0 commit comments

Comments
 (0)