Skip to content

Commit

Permalink
Scala 2.13.12
Browse files Browse the repository at this point in the history
  • Loading branch information
SethTisue committed Sep 6, 2023
1 parent f44148d commit 3db06f2
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 10 deletions.
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.11
scala-version: 2.13.12
scala-212-version: 2.12.18
scala-3-version: 3.3.0

Expand Down
2 changes: 1 addition & 1 deletion _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.2.0 (17.0.3, Java OpenJDK 64-Bit Server VM).
Welcome to Scala 3.3.0 (17.0.3, Java OpenJDK 64-Bit Server VM).
Type in expressions for evaluation. Or try :help.
scala> util.Properties.versionNumberString
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.11` or `3.3.0`. If the bug happens in multiple versions indicate all of them.
1. **Exact Scala version** that you are using. For example, `2.13.12` or `3.3.0`. 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
2 changes: 1 addition & 1 deletion _overviews/contributors/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ If you have written a library, you probably want it to be usable from several Sc
Define the versions you want to support in the `crossScalaVersions` setting, in your `build.sbt` file:

~~~ scala
crossScalaVersions := Seq("3.3.0", "2.13.11", "2.12.18")
crossScalaVersions := Seq("3.3.0", "2.13.12", "2.12.18")
scalaVersion := crossScalaVersions.value.head
~~~

Expand Down
12 changes: 8 additions & 4 deletions api/all.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ redirect_from:

* Scala 3.3.0 LTS
* [Library API](https://www.scala-lang.org/api/3.3.0/)
* Scala 2.13.11
* [Library API](https://www.scala-lang.org/api/2.13.11/)
* [Compiler API](https://www.scala-lang.org/api/2.13.11/scala-compiler/scala/)
* [Reflection API](https://www.scala-lang.org/api/2.13.11/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/)
* [Reflection API](https://www.scala-lang.org/api/2.13.12/scala-reflect/scala/reflect/)
* Scala 2.12.18
* [Library API](https://www.scala-lang.org/api/2.12.18/)
* [Compiler API](https://www.scala-lang.org/api/2.12.18/scala-compiler/scala/)
Expand Down Expand Up @@ -82,6 +82,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.11
* [Library API](https://www.scala-lang.org/api/2.13.11/)
* [Compiler API](https://www.scala-lang.org/api/2.13.11/scala-compiler/scala/)
* [Reflection API](https://www.scala-lang.org/api/2.13.11/scala-reflect/scala/reflect/)
* Scala 2.13.10
* [Library API](https://www.scala-lang.org/api/2.13.10/)
* [Compiler API](https://www.scala-lang.org/api/2.13.10/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.11 org.scalameta::mdoc:2.3.3 -- \
cs launch --scala-version 2.13.12 org.scalameta::mdoc:2.3.3 -- \
--in . \
--out /tmp/mdoc-out/ \
--classpath \
$(cs fetch --scala-version 2.13.11 -p \
$(cs fetch --scala-version 2.13.12 -p \
com.chuusai::shapeless:2.3.10 \
org.scala-lang::toolkit:0.1.7 \
org.scala-lang::toolkit-test:0.1.7 \
Expand Down

0 comments on commit 3db06f2

Please sign in to comment.