diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9f9b18e1a3..be38838a39 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -473,18 +473,12 @@ Input property `tabbarIcons` has been replaced by `tabbarLayout` and accepts the
https://github.com/driftyco/ionic-conference-app/commit/26f3393fe4be78468e1c51e0bbf5d05a2666cd20
-# 2.0.0-beta.0
+# [2.0.0-beta.0](https://github.com/driftyco/ionic/compare/v2.0.0-alpha.56...v2.0.0-beta.0) (2016-02-10)
Enjoy!
<3 The Ionic Team
-
-
-
-# [2.0.0-alpha.57](https://github.com/driftyco/ionic/compare/v2.0.0-alpha.56...v2.0.0-alpha.57) (2016-02-10)
-
-
### Bug Fixes
* **button:** bar-button uses inner span as flexbox ([38a3be4](https://github.com/driftyco/ionic/commit/38a3be4))
@@ -504,921 +498,3 @@ Enjoy!
The Web Animations polyfill is no longer shipped with the framework and may cause build errors.
Projects will need to be [updated accordingly](https://github.com/driftyco/ionic-conference-app/commit/2ed59e6fd275c4616792c7b2e5aa9da4a20fb188).
-
-
-# [2.0.0-alpha.56](https://github.com/driftyco/ionic/compare/v2.0.0-alpha.55...v2.0.0-alpha.56) (2016-02-05)
-
-
-### Bug Fixes
-
-* **tabs:** show navbar on second page in tab ([f2db74b](https://github.com/driftyco/ionic/commit/f2db74b))
-
-
-
-
-# [2.0.0-alpha.55](https://github.com/driftyco/ionic/compare/v2.0.0-alpha.54...v2.0.0-alpha.55) (2016-02-05)
-
-
-### Bug Fixes
-
-* **alert:** ensure keyup listener has been removed ([2710e34](https://github.com/driftyco/ionic/commit/2710e34))
-* **build:** tell gulp when finished building ([60e1278](https://github.com/driftyco/ionic/commit/60e1278))
-* **generators:** use mkdirp-no-bin ([dcc20fa](https://github.com/driftyco/ionic/commit/dcc20fa))
-* **input:** copy custom attrs from ion-input to native input ([4cfe210](https://github.com/driftyco/ionic/commit/4cfe210))
-* **menu:** fix scrolling page w/ side menus ([72699db](https://github.com/driftyco/ionic/commit/72699db)), closes [#5272](https://github.com/driftyco/ionic/issues/5272)
-* **menu:** only close when open on enable change ([a428363](https://github.com/driftyco/ionic/commit/a428363))
-* **searcher:** add autocomplete="off" to native input ([f47c3c3](https://github.com/driftyco/ionic/commit/f47c3c3))
-
-### Features
-
-* **actionsheet:** disable clicking backdrop to dismiss ([7686767](https://github.com/driftyco/ionic/commit/7686767))
-* **alert:** disable clicking backdrop to dismiss ([53e014f](https://github.com/driftyco/ionic/commit/53e014f))
-
-### Performance Improvements
-
-* **cards:** remove translateZ from ion-card ([60fdc5c](https://github.com/driftyco/ionic/commit/60fdc5c))
-* **tabs:** render tab navbar at same time of tab content ([687a17b](https://github.com/driftyco/ionic/commit/687a17b))
-
-### Breaking Changes
-
-Menu has been improved to make it easier to open, close, toggle and enable menus.
-Instead of injecting `IonicApp` to find the menu component, you now inject
-`MenuController`.
-
-Was:
-
-```
-constructor(app: IonicApp) {
- this.app = app;
-}
-openMenu() {
- this.app.getComponent('leftMenu').close();
-}
-```
-
-Now:
-
-To programmatically interact with any menu, you can inject the `MenuController`
-provider into any component or directive. This makes it easy get ahold
-of and control the correct menu instance. By default Ionic will find the app's
-menu without requiring a menu ID. An id attribute on an `` is only
-required if there are multiple menus on the same side. If there are multiple
-menus, but on different sides, you can use the name of the side to get the correct
-menu
-
-If there's only one menu:
-
-```
-constructor(menu: MenuController) {
- this.menu = menu;
-}
-openMenu() {
- this.menu.close();
-}
-```
-
-If there is a menu on the left and right side:
-
-```
-toggleMenu() {
- this.menu.toggle('left');
-}
-```
-
-If there are multiple menus on the same side:
-
-```
-...
-...
-
-closeMenu() {
- this.menu.close('myMenuId');
-}
-```
-
-
-
-# [2.0.0-alpha.54](https://github.com/driftyco/ionic/compare/v2.0.0-alpha.53...v2.0.0-alpha.54) (2016-02-02)
-
-
-### Bug Fixes
-
-* **alert:** add checkbox icon for iOS using Sass variables from regular checkbox ([68819f0](https://github.com/driftyco/ionic/commit/68819f0)), closes [#5253](https://github.com/driftyco/ionic/issues/5253)
-* **badge:** change default badge color to primary ([93b9891](https://github.com/driftyco/ionic/commit/93b9891)), closes [#5222](https://github.com/driftyco/ionic/issues/5222)
-* **badge:** split badge color into separate modes ([b472c6c](https://github.com/driftyco/ionic/commit/b472c6c))
-* **css:** minor updates to match previous snapshots ([9749b06](https://github.com/driftyco/ionic/commit/9749b06))
-* **input:** add/remove disabled on native text input ([11b8e08](https://github.com/driftyco/ionic/commit/11b8e08)), closes [#5280](https://github.com/driftyco/ionic/issues/5280)
-* **input:** check has value on writeValue ([181a070](https://github.com/driftyco/ionic/commit/181a070))
-* **input:** parent Item is optional ([db6f4bc](https://github.com/driftyco/ionic/commit/db6f4bc))
-* **prepare:** add missing require to prepare task ([b2f7278](https://github.com/driftyco/ionic/commit/b2f7278))
-* **scrollbars:** do not apply css scrollbars ([f3fb182](https://github.com/driftyco/ionic/commit/f3fb182))
-* **select:** always update value and text ([58443f0](https://github.com/driftyco/ionic/commit/58443f0))
-* **select:** null value clears select text ([c264e31](https://github.com/driftyco/ionic/commit/c264e31)), closes [#5288](https://github.com/driftyco/ionic/issues/5288)
-
-### Features
-
-* **button:** increase hit area of toolbar buttons ([cad9e49](https://github.com/driftyco/ionic/commit/cad9e49))
-* **checkbox:** add bg transition to md checkbox ([8466d39](https://github.com/driftyco/ionic/commit/8466d39))
-* **overlay:** fire the cancel handler when dismissing from backdrop ([1c618b5](https://github.com/driftyco/ionic/commit/1c618b5))
-* **scrollbars:** webkit scrollbar styling for desktop ([c7f2268](https://github.com/driftyco/ionic/commit/c7f2268))
-
-### Breaking Changes
-
-* **action-sheet:** Button `style` property renamed to `role` ([1c618b5](https://github.com/driftyco/ionic/commit/1c618b51eb0a31013f7d3509d34c796d65689836#diff-f61014c4fb6e166fa1b5645d126dd4f6L26))
-
-##### Angular was updated to Beta 2
-
-* Update the version of Angular in your `package.json` file:
-
- ```
- "angular2": "2.0.0-beta.2",
- ```
-
-
-
-# 2.0.0-alpha.53 (2016-01-28)
-
-### Features
-
-* Normalize how `ion-item` and inner inputs/avatars/icons/etc are written
-* Only one type of `ion-item`, rather than every input also having a similar structure
-* Multiple inputs can be placed inside of an `ion-item`
-* Allow avatars/thumbnails/icons next to checkbox/radio/toggle/select/input
-* Inputs can be stand-alone components, and not required within an `ion-item`
-
-
-### Breaking Changes
-
-* CSS may not get updated if your `ionic.config` file is not correct:
-
- If you have the following directory structure:
-
- ```
- │ ├── theme/ * App theme files
- │ │ ├── app.core.scss * App Shared Sass Imports
- │ │ ├── app.ios.scss * iOS Sass Imports & iOS Variables
- │ │ ├── app.md.scss * MD Sass Imports & MD Variables
- │ │ └── app.variables.scss * App Shared Sass Variables
- ```
-
- Make sure the `ionic.config` file looks like this:
-
- ```
- sass: {
- src: ['app/theme/app.+(ios|md).scss'],
- dest: 'www/build/css',
- include: [
- 'node_modules/ionic-framework',
- 'node_modules/ionicons/dist/scss'
- ]
- },
- ```
-* Inputs are now placed inside of `ion-item`
-* Inputs do not come with their own label
-* `ion-item-content` has been replaced with `ion-label`
-* Label attributes are placed on `ion-label` rather than `ion-input`
-* Native HTML `` and `