Skip to content

Commit a0daaa1

Browse files
committed
Announce Scala 2.12.3
1 parent 7b51d7e commit a0daaa1

File tree

4 files changed

+60
-10
lines changed

4 files changed

+60
-10
lines changed

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
title: The Scala Programming Language
22

3-
scalaversion: "2.12.2"
3+
scalaversion: "2.12.3"
44

55
baseurl: ""
66
markdown: kramdown

documentation/reference.md

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ includeTOC: true
77
---
88

99
## Latest releases
10-
* Scala 2.12.2
11-
* [Library API](http://www.scala-lang.org/api/2.12.2/)
12-
* [Compiler API](http://www.scala-lang.org/api/2.12.2/scala-compiler/)
13-
* [Reflection API](http://www.scala-lang.org/api/2.12.2/scala-reflect/#scala.reflect.package)
10+
* Scala 2.12.3
11+
* [Library API](http://www.scala-lang.org/api/2.12.3/)
12+
* [Compiler API](http://www.scala-lang.org/api/2.12.3/scala-compiler/)
13+
* [Reflection API](http://www.scala-lang.org/api/2.12.3/scala-reflect/#scala.reflect.package)
1414
* Scala Modules
15-
* [XML API](http://www.scala-lang.org/api/2.12.2/scala-xml/#scala.xml.package)
16-
* [Parser Combinators API](http://www.scala-lang.org/api/2.12.2/scala-parser-combinators/)
17-
* [Swing API](http://www.scala-lang.org/api/2.12.2/scala-swing/#scala.swing.package)
15+
* [XML API](http://www.scala-lang.org/api/2.12.3/scala-xml/#scala.xml.package)
16+
* [Parser Combinators API](http://www.scala-lang.org/api/2.12.3/scala-parser-combinators/)
17+
* [Swing API](http://www.scala-lang.org/api/2.12.3/scala-swing/#scala.swing.package)
1818
* Scala 2.11.11
1919
* [Library API](http://www.scala-lang.org/api/2.11.11/)
2020
* [Compiler API](http://www.scala-lang.org/api/2.11.11/scala-compiler/)
@@ -40,6 +40,14 @@ includeTOC: true
4040
* [Compiler API](http://www.scala-lang.org/files/archive/nightly/2.13.x/api/2.13.x/scala-compiler/)
4141

4242
## Previous releases
43+
* Scala 2.12.2
44+
* [Library API](http://www.scala-lang.org/api/2.12.2/)
45+
* [Compiler API](http://www.scala-lang.org/api/2.12.2/scala-compiler/)
46+
* [Reflection API](http://www.scala-lang.org/api/2.12.2/scala-reflect/#scala.reflect.package)
47+
* Scala Modules
48+
* [XML API](http://www.scala-lang.org/api/2.12.2/scala-xml/#scala.xml.package)
49+
* [Parser Combinators API](http://www.scala-lang.org/api/2.12.2/scala-parser-combinators/)
50+
* [Swing API](http://www.scala-lang.org/api/2.12.2/scala-swing/#scala.swing.package)
4351
* Scala 2.12.1
4452
* [Library API](http://www.scala-lang.org/api/2.12.1/)
4553
* [Compiler API](http://www.scala-lang.org/api/2.12.1/scala-compiler/)

download/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
layout: downloadpage
33
title: Download
4-
release_version: 2.12.2
5-
release_date: "April 18, 2017"
4+
release_version: 2.12.3
5+
release_date: "July 26, 2017"
66
show_resources: "true"
77
other_releases: [
88
["development_version", "Current 2.13.x milestone", 2.13.0-M1, "April 18, 2017"],
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
---
2+
layout: news
3+
post-type: announcement
4+
permalink: /news/2.12.3
5+
title: "Scala 2.12.3 is now available!"
6+
---
7+
## Changes
8+
9+
- Compiler performance has [improved significantly](developer.lightbend.com/blog/2017-06-12-faster-scala-compiler/) and is now [automatically benchmarked](https://scala-ci.typesafe.com/grafana/) after each change.
10+
- A new [optimizer setting](https://github.com/scala/scala/pull/5964) `-opt-inline-from` limits the classes from which the inliner will copy code. `scalac -opt-inline-from:help` provides [detailed help](https://gist.github.com/retronym/29932ea76712ff374d1363c9eda6eabe).
11+
- The presentation compiler has [improved support for implicit macros](https://github.com/scala/scala/pull/5929), which should improve the experience with libraries based on Shapeless. It also has [better support](https://github.com/scala/scala/pull/5927) for code completion for dependently typed methods.
12+
13+
Further [significant changes](https://github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.12.3%20label%3Arelease-notes) since 2.12.2 include:
14+
15+
- [#5978](https://github.com/scala/scala/pull/5978) Avoid calling static initializers when reflecting on Java classes
16+
- [#5964](https://github.com/scala/scala/pull/5589) New setting `-opt-inline-from` to control where to inline from
17+
- [#5931](https://github.com/scala/scala/pull/5931) Upgrade to jline 2.14.4
18+
- [#5880](https://github.com/scala/scala/pull/5880) bundle newer scala-parser-combinators (1.0.5->1.0.6)
19+
- [#5879](https://github.com/scala/scala/pull/5879) -Xlint:unused -Ywarn-unused is intuitive
20+
- [#5848](https://github.com/scala/scala/pull/5848) add per-phase profiling to scalac
21+
22+
For more information, check out [all closed bugs](https://github.com/scala/bug/issues?q=is%3Aclosed%20milestone%3A2.12.3) and [merged PRs](https://github.com/scala/scala/pulls?q=is%3Amerged%20milestone%3A2.12.3).
23+
24+
As usual for minor releases, Scala 2.12.3 is binary compatible with the whole Scala 2.12 series.
25+
26+
## Contributors
27+
28+
A big thank you to everyone who's helped improve Scala by reporting bugs, improving our documentation, spreading kindness in discussions around Scala, and submitting and reviewing pull requests! You are all magnificent.
29+
30+
This release was brought to you by 49 contributors, according to `git shortlog -sn --no-merges v2.12.2..v2.12.3`. Thank you, Jason Zaugg, Lukas Rytz, Som Snytt, Dale Wijnand, Janek Bogucki, Adriaan Moors, Seth Tisue, Earl St Sauver, Eugene Yokota, Mike Skells, Miles Sabin, Iulian Dragos, 杨博 (Yang Bo), Cody Allen, Harrison Houghton, Jasper Moeys, xuwei-k, Ganesh Prasad Kumble, Rory Graves, Rui Gonçalves, Sayyed, Atiq (Agoda), BrianLondon, Arnout Engelen, chengpohi, joymufeng, kenji yoshida, Adrien Suree, Edmund Noble!
31+
32+
## Scala 2.12 Notes
33+
34+
The [release notes for Scala 2.12.0](https://github.com/scala/scala/releases/v2.12.0) have important information applicable to the whole 2.12 series.
35+
36+
## Obtaining Scala
37+
38+
Scala releases are available through a variety of channels, including (but not limited to):
39+
40+
* Bump the `scalaVersion` setting in your sbt-based project
41+
* Download a distribution from [scala-lang.org](http://scala-lang.org/download/2.12.3.html)
42+
* Obtain JARs via [Maven Central](http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22org.scala-lang%22%20AND%20v%3A%222.12.3%22)

0 commit comments

Comments
 (0)