Commit 647c3d96 authored by Jesús Rodríguez's avatar Jesús Rodríguez Committed by GitHub

chore: update to RC4 (#149)

parent 682dc152
...@@ -11,7 +11,6 @@ e2e/**/*.js.map ...@@ -11,7 +11,6 @@ e2e/**/*.js.map
_test-output _test-output
_temp _temp
!**/*e2e-spec.js
!karma*.js !karma*.js
!protractor*.js !protractor*.js
!systemjs.config.js !systemjs.config.js
......
<a name="0.2.5"></a>
# 0.2.5 (2016-06-30)
* Angular 2 RC4 version
* Updated new forms and router
<a name="0.2.4"></a> <a name="0.2.4"></a>
# 0.2.2 (2016-06-21) # 0.2.4 (2016-06-21)
* Angular 2 RC3 version * Angular 2 RC3 version
* Add new forms and router * Add new forms and router
* Add support for TS e2e tests * Add support for TS e2e tests
<a name="0.2.3"></a> <a name="0.2.3"></a>
# 0.2.2 (2016-06-15) # 0.2.3 (2016-06-15)
* Angular 2 RC2 version * Angular 2 RC2 version
<a name="0.2.2"></a> <a name="0.2.2"></a>
......
/* tslint:disable:no-unused-variable */ /* tslint:disable:no-unused-variable */
import { AppComponent } from './app.component'; import { AppComponent } from './app.component';
import { import { async, inject } from '@angular/core/testing';
expect, it, iit, xit,
describe, ddescribe, xdescribe, import { TestComponentBuilder } from '@angular/core/testing';
beforeEach, beforeEachProviders, withProviders,
async, inject
} from '@angular/core/testing';
import { TestComponentBuilder } from '@angular/compiler/testing';
import { By } from '@angular/platform-browser'; import { By } from '@angular/platform-browser';
import { provide } from '@angular/core'; import { provide } from '@angular/core';
......
import {Component} from '@angular/core'; import { Component } from '@angular/core';
@Component({ @Component({
selector: 'my-app', selector: 'my-app',
......
import {bootstrap} from '@angular/platform-browser-dynamic'; import { bootstrap } from '@angular/platform-browser-dynamic';
import {AppComponent} from './app.component';
import { AppComponent } from './app.component';
bootstrap(AppComponent); bootstrap(AppComponent);
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment