diff --git a/_data/scala-releases.yml b/_data/scala-releases.yml index bbf40fe41..1a9796962 100644 --- a/_data/scala-releases.yml +++ b/_data/scala-releases.yml @@ -1,7 +1,7 @@ - category: current_version title: Current 3.6.x release - version: 3.6.2 - release_date: December 10, 2024 + version: 3.6.3 + release_date: January 20, 2025 - category: current_version title: Current 3.3.x LTS release version: 3.3.4 diff --git a/_downloads/2025-01-20-3.6.3.md b/_downloads/2025-01-20-3.6.3.md new file mode 100644 index 000000000..de16461ac --- /dev/null +++ b/_downloads/2025-01-20-3.6.3.md @@ -0,0 +1,10 @@ +--- +title: Scala 3.6.3 +start: 20 January 2025 +layout: downloadpage +release_version: 3.6.3 +release_date: "January 20, 2025" +permalink: /download/3.6.3.html +license: Apache License, Version 2.0 +api_docs: https://www.scala-lang.org/api/3.6.3/ +--- diff --git a/_posts/2025-01-20-release-notes-3.6.3.md b/_posts/2025-01-20-release-notes-3.6.3.md new file mode 100644 index 000000000..56cc75049 --- /dev/null +++ b/_posts/2025-01-20-release-notes-3.6.3.md @@ -0,0 +1,13 @@ +--- +category: announcement +permalink: /news/3.6.3/ +title: "Scala 3.6.3 is now available!" +--- +Scala 3.6.3 is now available! + +The new feature introduced in this release is `-Yprofile-trace` compiler option enabling the generation of trace events in a standard JSON format. These can be used by tooling to graphically inspect the amount of time needed to process sources in each compilation phase. + +To use this feature run compilation with `-Yprofile-enabled` and `-Yprofile-trace:path/to/compiler.trace` to specify where traces should be saved. You can also optionally define `-Yprofile-destination:path/to/profiler.output` to redirect other profiler outputs that would be printed on the standard output otherwise. The final result file can rendered in the web browser using . +For more details [refer to the Scala 3 PR](https://github.com/scala/scala3/pull/19897) or its [original Scala implementation](https://github.com/scala/scala/pull/7364). + +For a full list of changes and contributor credits, please refer to the [release notes](https://github.com/scala/scala3/releases/tag/3.6.3).