-
Notifications
You must be signed in to change notification settings - Fork 332
Dotty 0.3.0-RC2 announcement #735
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
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
150 changes: 150 additions & 0 deletions
150
blog/_posts/2017-09-07-third-dotty-milestone-release.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,150 @@ | ||
| --- | ||
| layout: blog | ||
| post-type: blog | ||
| title: Announcing Dotty 0.3.0-RC2, with improved stability and IDE support | ||
| by: Allan Renucci | ||
| --- | ||
|
|
||
| Today, we are excited to release Dotty version 0.3.0-RC2. This release | ||
| serves as a technology preview that demonstrates new language features | ||
| and the compiler supporting them. | ||
|
|
||
| If you’re not familiar with Dotty, it's a platform to try out new language concepts and compiler | ||
| technologies for Scala. The focus is mainly on simplification. We remove extraneous syntax | ||
| (e.g. no XML literals), and try to boil down Scala’s types into a smaller set of more fundamental | ||
| constructors. The theory behind these constructors is researched in | ||
| [DOT](https://infoscience.epfl.ch/record/215280), a calculus for dependent object types. | ||
| You can learn more about Dotty on our [website](http://dotty.epfl.ch). | ||
|
|
||
| <!--more--> | ||
|
|
||
| This is our third scheduled release according to our [6-week release schedule](http://dotty.epfl.ch/docs/usage/version-numbers.html). | ||
| The [previous technology preview](/blog/2017/07/12/second-dotty-milestone-release.html) improved | ||
| stability and reliability: | ||
| - substantial improvement of quality of generated code for pattern matching | ||
| - improvements in VS Code IDE stability | ||
| - support Windows in VS Code IDE | ||
| - improved compatibility with scalac | ||
| - initial support for reproducible builds | ||
|
|
||
| ## What’s in the 0.3.0-RC2 technology preview? | ||
| This technology preview further improves stability and reliability. Some highlighted PRs are: | ||
| - IDE bug fixes: | ||
| [#2986](https://github.com/lampepfl/dotty/pull/2986), | ||
| [#2932](https://github.com/lampepfl/dotty/pull/2932), | ||
| [#2885](https://github.com/lampepfl/dotty/pull/2885), | ||
| [#2876](https://github.com/lampepfl/dotty/pull/2876), | ||
| [#2870](https://github.com/lampepfl/dotty/pull/2870), | ||
| [#2872](https://github.com/lampepfl/dotty/pull/2872) by [@odersky] and [@smarter]. | ||
|
|
||
|
|
||
| ## How can you try it out? | ||
| We ship with tools that help you try out the Dotty platform: | ||
|
|
||
| - [IDE features for Visual Studio Code](http://dotty.epfl.ch/docs/usage/ide-support.html) | ||
| - [sbt support, including retro-compatibility with Scala 2](https://github.com/lampepfl/dotty-example-project) | ||
|
|
||
|
|
||
| You have several alternatives; use the `sbt-dotty` plugin, get a standalone | ||
| installation, or try it online on [Scastie]. | ||
|
|
||
| ### sbt | ||
| Using sbt 0.13.13 or newer, do: | ||
|
|
||
| ``` | ||
| sbt new lampepfl/dotty.g8 | ||
| ``` | ||
|
|
||
| This will setup a new sbt project with Dotty as compiler. For more details on | ||
| using Dotty with sbt, see the | ||
| [example project](https://github.com/lampepfl/dotty-example-project). | ||
|
|
||
| ### Standalone installation | ||
| Releases are available for download on the _Releases_ | ||
| section of the Dotty repository: | ||
| [https://github.com/lampepfl/dotty/releases](https://github.com/lampepfl/dotty/releases) | ||
|
|
||
| We also provide a [homebrew](https://brew.sh/) package that can be installed by running: | ||
|
|
||
| ``` | ||
| brew install lampepfl/brew/dotty | ||
| ``` | ||
|
|
||
| In case you have already installed Dotty via brew, you should instead update it: | ||
|
|
||
| ``` | ||
| brew upgrade dotty | ||
| ``` | ||
|
|
||
| ### Scastie | ||
| [Scastie], the online Scala playground, supports Dotty. | ||
| You can try it out there without installing anything. | ||
|
|
||
|
|
||
| ## What are the next steps? | ||
| Over the coming weeks and months, we plan to work on the following topics: | ||
|
|
||
| - [Add support for using Dotty generated classes with Scala 2.12](https://github.com/lampepfl/dotty/pull/2827) | ||
| - [Add Language-level support for HMaps and HLists](https://github.com/lampepfl/dotty/pull/2199); | ||
| - Upstream more optimizations from Dotty Linker | ||
| - [Add support for existing in the same classpath with Scala 2.12](https://github.com/lampepfl/dotty/pull/2827) | ||
| - [Add native Dotty REPL](https://github.com/lampepfl/dotty/pull/2991) | ||
|
|
||
| ## Questions / Reporting Bugs | ||
| If you have questions or any sort of feedback, feel free to send us a message on our | ||
| [Gitter channel](https://gitter.im/lampepfl/dotty). If you encounter a bug, please | ||
| [open an issue on GitHub](https://github.com/lampepfl/dotty/issues/new). | ||
|
|
||
| ## Contributing | ||
| Thank you to all the contributors who made this release possible! | ||
|
|
||
| According to `git shortlog -sn --no-merges 0.2.0-RC1..0.3.0-RC2` these are: | ||
|
|
||
| ``` | ||
| 138 Martin Odersky | ||
| 36 Nicolas Stucki | ||
| 12 Guillaume Martres | ||
| 7 Dmitry Petrashko | ||
| 5 liu fengyun | ||
| 4 Allan Renucci | ||
| 4 Felix Mulder | ||
| 2 Lorand Szakacs | ||
| 1 Lukas Ciszewski | ||
| 1 Max Ovsiankin | ||
| 1 Lanny Ripple | ||
| 1 Serhii Pererva | ||
| 1 Georg Schmid | ||
| ``` | ||
|
|
||
| If you want to get your hands dirty with any of this, now is a good moment to get involved! | ||
| You can have a look at our [Getting Started page](http://dotty.epfl.ch/docs/contributing/getting-started.html), | ||
| our [Awesome Error Messages](http://scala-lang.org/blog/2016/10/14/dotty-errors.html) or some of | ||
| the simple [Dotty issues](https://github.com/lampepfl/dotty/issues?q=is%3Aissue+is%3Aopen+label%3Aexp%3Anovice). | ||
| They make perfect entry-points into hacking on the compiler. | ||
|
|
||
| We are looking forward to having you join the team of contributors. | ||
|
|
||
| ## Library authors: Join our community build | ||
|
|
||
| Dotty now has a set of libraries that are built against every nightly snapshot. | ||
| Currently this includes scalatest, squants and algebra. | ||
| Join our [community build](https://github.com/lampepfl/dotty-community-build) | ||
| to make sure that our regression suite includes your library. | ||
|
|
||
|
|
||
| To get started, see [https://github.com/lampepfl/dotty](https://github.com/lampepfl/dotty). | ||
|
|
||
|
|
||
| [Scastie]: https://scastie.scala-lang.org/?target=dotty | ||
|
|
||
| [@odersky]: https://github.com/odersky | ||
| [@DarkDimius]: https://github.com/DarkDimius | ||
| [@smarter]: https://github.com/smarter | ||
| [@felixmulder]: https://github.com/felixmulder | ||
| [@nicolasstucki]: https://github.com/nicolasstucki | ||
| [@liufengyun]: https://github.com/liufengyun | ||
| [@OlivierBlanvillain]: https://github.com/OlivierBlanvillain | ||
| [@OlivierBlanvillain]: https://github.com/OlivierBlanvillain | ||
| [@biboudis]: https://github.com/biboudis | ||
| [@biboudis]: https://github.com/biboudis | ||
| [@allanrenucci]: https://github.com/allanrenucci | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Layout should be
blog-detail, notblog.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍