Skip to content

Commit 1c4ae58

Browse files
committed
Scala 2.13.14
1 parent 609e473 commit 1c4ae58

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ keywords:
1515
- Document
1616
- Guide
1717

18-
scala-version: 2.13.13
18+
scala-version: 2.13.14
1919
scala-212-version: 2.12.19
2020
scala-3-version: 3.4.1
2121

_overviews/FAQ/index.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ with only minor supplements. That's why `versionString` and
120120
`versionNumberString` report that Scala 2 is in use:
121121

122122
```
123-
Welcome to Scala 3.3.2 (17.0.3, Java OpenJDK 64-Bit Server VM).
123+
Welcome to Scala 3.3.3 (17.0.3, Java OpenJDK 64-Bit Server VM).
124124
Type in expressions for evaluation. Or try :help.
125125
126126
scala> util.Properties.versionNumberString
@@ -332,14 +332,14 @@ setting in a multi-project build.
332332

333333
For example, if you add this to your `build.sbt`:
334334

335-
scalaVersion := "2.13.13"
335+
scalaVersion := "2.13.14"
336336

337337
that's a "bare" setting, and you might expect it to apply build-wide.
338338
But it doesn't. _It only applies to the root project._
339339

340340
In many cases one should instead write:
341341

342-
ThisBuild / scalaVersion := "2.13.13"
342+
ThisBuild / scalaVersion := "2.13.14"
343343

344344
Other possibilities include:
345345

_overviews/contribute/bug-reporting-guide.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ If you cannot find your issue in the issue tracker, create a new bug. The detail
6565

6666
Please make sure to fill in as many fields as possible. Make sure you've indicated the following:
6767

68-
1. **Exact Scala version** that you are using. For example, `2.13.13` or `3.3.2`. If the bug happens in multiple versions indicate all of them.
68+
1. **Exact Scala version** that you are using. For example, `2.13.14` or `3.3.3`. If the bug happens in multiple versions indicate all of them.
6969
2. **The component** that is affected by the bug. For example, the Standard Library, Scaladoc, etc.
7070
3. **Labels** related to your issue. For example, if you think your issue is related to the typechecker, and if you have successfully minimized your issue, label your bug as "typechecker" and "minimized". Issue tracker will suggest names for existing labels as you type them so try not to create duplicates.
7171
4. **Running environment**. Are you running on Linux? Windows? What JVM version are you using?

api/all.md

+8-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ redirect_from:
1212
* [Library API](https://www.scala-lang.org/api/3.4.1/)
1313
* Scala 3.3.3 LTS
1414
* [Library API](https://www.scala-lang.org/api/3.3.3/)
15-
* Scala 2.13.13
16-
* [Library API](https://www.scala-lang.org/api/2.13.13/)
17-
* [Compiler API](https://www.scala-lang.org/api/2.13.13/scala-compiler/scala/)
18-
* [Reflection API](https://www.scala-lang.org/api/2.13.13/scala-reflect/scala/reflect/)
15+
* Scala 2.13.14
16+
* [Library API](https://www.scala-lang.org/api/2.13.14/)
17+
* [Compiler API](https://www.scala-lang.org/api/2.13.14/scala-compiler/scala/)
18+
* [Reflection API](https://www.scala-lang.org/api/2.13.14/scala-reflect/scala/reflect/)
1919
* Scala 2.12.19
2020
* [Library API](https://www.scala-lang.org/api/2.12.19/)
2121
* [Compiler API](https://www.scala-lang.org/api/2.12.19/scala-compiler/scala/)
@@ -90,6 +90,10 @@ https://scala-ci.typesafe.com/artifactory/scala-integration/org/scala-lang/
9090
* [Library API](https://www.scala-lang.org/api/3.0.1/)
9191
* Scala 3.0.0
9292
* [Library API](https://www.scala-lang.org/api/3.0.0/)
93+
* Scala 2.13.13
94+
* [Library API](https://www.scala-lang.org/api/2.13.13/)
95+
* [Compiler API](https://www.scala-lang.org/api/2.13.13/scala-compiler/scala/)
96+
* [Reflection API](https://www.scala-lang.org/api/2.13.13/scala-reflect/scala/reflect/)
9397
* Scala 2.13.12
9498
* [Library API](https://www.scala-lang.org/api/2.13.12/)
9599
* [Compiler API](https://www.scala-lang.org/api/2.13.12/scala-compiler/scala/)

scripts/run-mdoc.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/bin/bash
22
set -eux
33

4-
cs launch --scala-version 2.13.13 org.scalameta::mdoc:2.3.3 -- \
4+
cs launch --scala-version 2.13.14 org.scalameta::mdoc:2.3.3 -- \
55
--in . \
66
--out /tmp/mdoc-out/ \
77
--classpath \
8-
$(cs fetch --scala-version 2.13.13 -p \
8+
$(cs fetch --scala-version 2.13.14 -p \
99
com.chuusai::shapeless:2.3.10 \
1010
org.scala-lang::toolkit:0.1.7 \
1111
org.scala-lang::toolkit-test:0.1.7 \

0 commit comments

Comments
 (0)