From 55f156366f282089112b460b0848e8ecf46a920d Mon Sep 17 00:00:00 2001 From: Brandy Carney Date: Thu, 21 Jan 2016 11:42:41 -0500 Subject: [PATCH] docs(CHANGELOG): add alpha.51 changelog --- CHANGELOG.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index eee650b8ba..e9e9c95c25 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ + +# 2.0.0-alpha.51 (2016-1-21) + +### Breaking Changes + +##### Angular was updated to Beta 1 + +* Update the version of Angular in your `package.json` file: + + ``` + "angular2": "2.0.0-beta.1", + ``` + +##### Ionicons were moved + +* Install ionicons (this will be added in the starters): `npm install --save ionicons` +* Modify the sass `include` in your `ionic.config.js` file: + + ``` + sass: { + src: ['app/theme/app.+(ios|md).scss'], + dest: 'www/build/css', + include: [ + 'node_modules/ionic-framework', + 'node_modules/ionicons/dist/scss' + ] + }, + ``` + + # 2.0.0-alpha.48 (2016-1-7)