Add breaking changes link to changelog; bump date

This commit is contained in:
Geoffrey Booth
2017-02-10 11:36:35 -08:00
parent ecafe7ce0f
commit ebe32d35e2
2 changed files with 4 additions and 4 deletions

View File

@@ -3294,9 +3294,9 @@ The CoffeeScript logo is available in SVG for use in presentations.</li>
<h2>Change Log</h2><div class="anchor" id="2.0.0-alpha1"></div>
<h2 class="header">
<a href="https://github.com/jashkenas/coffeescript/compare/1.12.3...2.0.0-alpha1">2.0.0-alpha1</a>
<span class="timestamp"> &mdash; <time datetime="2017-02-10">February 10, 2017</time></span>
<span class="timestamp"> &mdash; <time datetime="2017-02-13">February 13, 2017</time></span>
</h2><ul>
<li>Initial alpha release of CoffeeScript 2. The CoffeeScript compiler now outputs ES2015+ syntax whenever possible.</li>
<li>Initial alpha release of CoffeeScript 2. The CoffeeScript compiler now outputs ES2015+ syntax whenever possible. See <a href="#breaking-changes">breaking changes</a>.</li>
<li>Classes are output using ES2015 <code>class</code> and <code>extends</code> keywords.</li>
<li>Added support for <code>async</code>/<code>await</code>.</li>
<li>Bound (arrow) functions now output as <code>=&gt;</code> functions.</li>

View File

@@ -1,9 +1,9 @@
## Change Log
```
releaseHeader('2017-02-10', '2.0.0-alpha1', '1.12.3')
releaseHeader('2017-02-13', '2.0.0-alpha1', '1.12.3')
```
* Initial alpha release of CoffeeScript 2. The CoffeeScript compiler now outputs ES2015+ syntax whenever possible.
* Initial alpha release of CoffeeScript 2. The CoffeeScript compiler now outputs ES2015+ syntax whenever possible. See [breaking changes](#breaking-changes).
* Classes are output using ES2015 `class` and `extends` keywords.
* Added support for `async`/`await`.
* Bound (arrow) functions now output as `=>` functions.