Skip to content

Commit 8c5a58f

Browse files
Merge pull request #9253 from dotty-staging/upgrade/scala-2.13.3
Upgrade scala-library to 2.13.3
2 parents 4d512f0 + 653e112 commit 8c5a58f

File tree

6 files changed

+10
-10
lines changed

6 files changed

+10
-10
lines changed

project/Build.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,8 @@ object Build {
8181
* scala-library.
8282
*/
8383
def stdlibVersion(implicit mode: Mode): String = mode match {
84-
case NonBootstrapped => "2.13.2"
85-
case Bootstrapped => "2.13.2"
84+
case NonBootstrapped => "2.13.3"
85+
case Bootstrapped => "2.13.3"
8686
}
8787

8888
val dottyOrganization = "ch.epfl.lamp"

tests/run/serialization-new.check

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,8 @@ _o2 = Some(1)
5454
o2 eq _o2: false, _o2 eq o2: false
5555
o2 equals _o2: true, _o2 equals o2: true
5656

57-
s1 = 'hello
58-
_s1 = 'hello
57+
s1 = Symbol(hello)
58+
_s1 = Symbol(hello)
5959
s1 eq _s1: true, _s1 eq s1: true
6060
s1 equals _s1: true, _s1 equals s1: true
6161

@@ -124,8 +124,8 @@ x = TreeSet(0, 2)
124124
y = TreeSet(0, 2)
125125
x equals y: true, y equals x: true
126126

127-
x = Vector('a, 'b, 'c)
128-
y = Vector('a, 'b, 'c)
127+
x = Vector(Symbol(a), Symbol(b), Symbol(c))
128+
y = Vector(Symbol(a), Symbol(b), Symbol(c))
129129
x equals y: true, y equals x: true
130130

131131
x = ArrayBuffer(one, two)

tests/run/t4601.check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
'blubber
1+
Symbol(blubber)

tests/run/t6633.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ object Test extends App {
2020
}
2121

2222
val replStr = scala.runtime.ScalaRunTime.replStringOf(lb1, 100)
23-
if (replStr == "ListBuffer('a, 'b, 'c, 'd, 'e)\n")
23+
if (replStr == "ListBuffer(Symbol(a), Symbol(b), Symbol(c), Symbol(d), Symbol(e))\n")
2424
println("replStringOf OK")
2525
else
2626
println("replStringOf FAILED: " + replStr)

tests/run/t6634.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ object Test extends App {
6767
// buffer should neither be changed nor corrupted after calling remove with invalid arguments
6868
def checkNotCorrupted(
6969
lb: ListBuffer[Symbol],
70-
expectedString: String = "ListBuffer('a, 'b, 'c, 'd, 'e)",
70+
expectedString: String = "ListBuffer(Symbol(a), Symbol(b), Symbol(c), Symbol(d), Symbol(e))",
7171
expectedLength: Int = 5) = {
7272
println("Checking ...")
7373
val replStr = scala.runtime.ScalaRunTime.replStringOf(lb, 100)

0 commit comments

Comments
 (0)