You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: _posts/2024-12-05-release-notes-3.6.2.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ title: "Scala 3.6.2 is now available!"
8
8
9
9
We're happy to announce the next minor release of Scala - 3.6.2 is finally out!
10
10
11
-
# What happend to Scala 3.6.0 and 3.6.1?
11
+
# What happened to Scala 3.6.0 and 3.6.1?
12
12
13
13
During the release of 3.6.0-RC1, an accident caused the publishing of artefacts versioned as 3.6.0 to the immutable Maven repository.
14
14
To mitigate possible damage we've released a hotfix release 3.6.1 to prevent automatic tooling from using a broken version of the compiler.
@@ -20,7 +20,7 @@ We apologize to the Scala users for any inconvenience it might have caused.
20
20
21
21
# What’s new in Scala 3.6?
22
22
23
-
Besides multiple bugfixes, this release stabilises multiple experimental features introduced to Scala language after careful review and acceptance by the [Scala Improvement Proposal's Commitee](https://docs.scala-lang.org/sips/). Many of these changes can have a significant impact on the Scala syntax and are introducing new possibilities in writing concise, typesafe as well as easier, and easier to maintain code.
23
+
Besides multiple bugfixes, this release stabilises multiple experimental features introduced to the Scala language after careful review and acceptance by the [Scala Improvement Proposal's Commitee](https://docs.scala-lang.org/sips/). Many of these changes can have a significant impact on the Scala syntax and are introducing new possibilities in writing concise, typesafe as well as easier, and easier to maintain code.
24
24
25
25
## SIP-47 - Clause Interleaving
26
26
@@ -117,7 +117,7 @@ def Test = summon[InvF[B] =:= String] // was error: selector B does not uniquely
Starting with Scala 3.6.2 you can take advantage of improvements to the for-comprehesnions syntax.
120
+
Starting with Scala 3.6.2 you can take advantage of improvements to the for-comprehensions syntax.
121
121
Major user-facing improvement introduced by [SIP-62](https://docs.scala-lang.org/sips/better-fors.html) is the ability to start a for-comprehension block with aliases:
122
122
123
123
```scala
@@ -184,7 +184,7 @@ The compiler can provide you with automatic rewrites introducing now required na
184
184
185
185
## Experimental SIP-58 - Named Tuples
186
186
187
-
Named Tuples have been introduced as experimental in Scala 3.5.0. This feature is now ready to be tested, but is not yet stablized.
187
+
Named Tuples have been introduced as experimental in Scala 3.5.0. This feature is now ready to be tested, but is not yet stabilized.
188
188
We encourage you to try named tuples and to report your feedback [on the public forum](https://contributors.scala-lang.org/t/pre-sip-named-tuples).
189
189
Named Tuples allow you to give meaningful names to tuple elements and use those names during constructing, destructuring, and pattern matching.
0 commit comments