Skip to content

Scala 2.13.14 #3011

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ keywords:
- Document
- Guide

scala-version: 2.13.13
scala-version: 2.13.14
scala-212-version: 2.12.19
scala-3-version: 3.4.1

Expand Down
6 changes: 3 additions & 3 deletions _overviews/FAQ/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ with only minor supplements. That's why `versionString` and
`versionNumberString` report that Scala 2 is in use:

```
Welcome to Scala 3.3.2 (17.0.3, Java OpenJDK 64-Bit Server VM).
Welcome to Scala 3.3.3 (17.0.3, Java OpenJDK 64-Bit Server VM).
Type in expressions for evaluation. Or try :help.

scala> util.Properties.versionNumberString
Expand Down Expand Up @@ -332,14 +332,14 @@ setting in a multi-project build.

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

scalaVersion := "2.13.13"
scalaVersion := "2.13.14"

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

In many cases one should instead write:

ThisBuild / scalaVersion := "2.13.13"
ThisBuild / scalaVersion := "2.13.14"

Other possibilities include:

Expand Down
2 changes: 1 addition & 1 deletion _overviews/contribute/bug-reporting-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ If you cannot find your issue in the issue tracker, create a new bug. The detail

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

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.
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.
2. **The component** that is affected by the bug. For example, the Standard Library, Scaladoc, etc.
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.
4. **Running environment**. Are you running on Linux? Windows? What JVM version are you using?
Expand Down
12 changes: 8 additions & 4 deletions api/all.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ redirect_from:
* [Library API](https://www.scala-lang.org/api/3.4.1/)
* Scala 3.3.3 LTS
* [Library API](https://www.scala-lang.org/api/3.3.3/)
* Scala 2.13.13
* [Library API](https://www.scala-lang.org/api/2.13.13/)
* [Compiler API](https://www.scala-lang.org/api/2.13.13/scala-compiler/scala/)
* [Reflection API](https://www.scala-lang.org/api/2.13.13/scala-reflect/scala/reflect/)
* Scala 2.13.14
* [Library API](https://www.scala-lang.org/api/2.13.14/)
* [Compiler API](https://www.scala-lang.org/api/2.13.14/scala-compiler/scala/)
* [Reflection API](https://www.scala-lang.org/api/2.13.14/scala-reflect/scala/reflect/)
* Scala 2.12.19
* [Library API](https://www.scala-lang.org/api/2.12.19/)
* [Compiler API](https://www.scala-lang.org/api/2.12.19/scala-compiler/scala/)
Expand Down Expand Up @@ -90,6 +90,10 @@ https://scala-ci.typesafe.com/artifactory/scala-integration/org/scala-lang/
* [Library API](https://www.scala-lang.org/api/3.0.1/)
* Scala 3.0.0
* [Library API](https://www.scala-lang.org/api/3.0.0/)
* Scala 2.13.13
* [Library API](https://www.scala-lang.org/api/2.13.13/)
* [Compiler API](https://www.scala-lang.org/api/2.13.13/scala-compiler/scala/)
* [Reflection API](https://www.scala-lang.org/api/2.13.13/scala-reflect/scala/reflect/)
* Scala 2.13.12
* [Library API](https://www.scala-lang.org/api/2.13.12/)
* [Compiler API](https://www.scala-lang.org/api/2.13.12/scala-compiler/scala/)
Expand Down
4 changes: 2 additions & 2 deletions scripts/run-mdoc.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/bash
set -eux

cs launch --scala-version 2.13.13 org.scalameta::mdoc:2.3.3 -- \
cs launch --scala-version 2.13.14 org.scalameta::mdoc:2.3.3 -- \
--in . \
--out /tmp/mdoc-out/ \
--classpath \
$(cs fetch --scala-version 2.13.13 -p \
$(cs fetch --scala-version 2.13.14 -p \
com.chuusai::shapeless:2.3.10 \
org.scala-lang::toolkit:0.1.7 \
org.scala-lang::toolkit-test:0.1.7 \
Expand Down
Loading