diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5625f699d7..10c17ad7c1 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,26 @@
+
+# [4.0.0-alpha.11](https://github.com/ionic-team/ionic/compare/v4.0.0-alpha.10...v4.0.0-alpha.11) (2018-07-16)
+
+
+### Bug Fixes
+
+* **anchor:** add proper styling, support for colors, and basic test ([1dbf5bb](https://github.com/ionic-team/ionic/commit/1dbf5bb)), closes [#14777](https://github.com/ionic-team/ionic/issues/14777)
+* **anchor:** inner inherits text styles ([9aedfc6](https://github.com/ionic-team/ionic/commit/9aedfc6))
+* **button:** add box-sizing so anchor buttons won't exceed max-width ([9c9f081](https://github.com/ionic-team/ionic/commit/9c9f081)), closes [#14760](https://github.com/ionic-team/ionic/issues/14760)
+* **button:** set display type on host ([89d1526](https://github.com/ionic-team/ionic/commit/89d1526))
+* **button:** submit form w/ ion-button within shadow dom ([4ed8541](https://github.com/ionic-team/ionic/commit/4ed8541)), closes [#14776](https://github.com/ionic-team/ionic/issues/14776)
+* **item:** add cursor pointer back to native item ([43f1fec](https://github.com/ionic-team/ionic/commit/43f1fec)), closes [#14743](https://github.com/ionic-team/ionic/issues/14743)
+* **searchbar:** use tag in toolbar context selector ([124b87c](https://github.com/ionic-team/ionic/commit/124b87c))
+* **segment:** add styles for in a color toolbar ([d9e4ca7](https://github.com/ionic-team/ionic/commit/d9e4ca7))
+* **spinner:** style CSS props ([2798bb0](https://github.com/ionic-team/ionic/commit/2798bb0))
+* **tab:** props are reactive ([00c4c77](https://github.com/ionic-team/ionic/commit/00c4c77))
+* **tab-button:** add a class to hide the tab when show is false ([eb9ed17](https://github.com/ionic-team/ionic/commit/eb9ed17))
+* **tabs:** add the colors to the tabbar as well ([5348e7c](https://github.com/ionic-team/ionic/commit/5348e7c)), closes [#14758](https://github.com/ionic-team/ionic/issues/14758)
+* **tabs:** fix the tabs so the color property works on tab button ([8aed3bf](https://github.com/ionic-team/ionic/commit/8aed3bf)), closes [#14758](https://github.com/ionic-team/ionic/issues/14758)
+* **virtual-scroll:** read viewport size for every scroll event ([1d3eb3f](https://github.com/ionic-team/ionic/commit/1d3eb3f))
+
+
+
# [4.0.0-alpha.10](https://github.com/ionic-team/ionic/compare/v4.0.0-alpha.9...v4.0.0-alpha.10) (2018-07-11)
diff --git a/angular/package.json b/angular/package.json
index aabaed1dc5..fc916d4ca8 100644
--- a/angular/package.json
+++ b/angular/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
- "version": "4.0.0-alpha.10",
+ "version": "4.0.0-alpha.11",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
@@ -41,7 +41,7 @@
"css/"
],
"dependencies": {
- "@ionic/core": "4.0.0-alpha.10"
+ "@ionic/core": "4.0.0-alpha.11"
},
"devDependencies": {
"@angular/common": "^6.0.9",
diff --git a/core/README.md b/core/README.md
index 167f80200d..31c0083581 100644
--- a/core/README.md
+++ b/core/README.md
@@ -20,7 +20,7 @@ The Ionic Core package contains the Web Components that make up the reusable UI
Easiest way to start using Ionic Core is by adding a script tag to the CDN:
-
+
Any Ionic component added to the webpage will automatically load. This includes writing the component tag directly in HTML, or using JavaScript such as `document.createElement('ion-toggle')`.
diff --git a/core/package.json b/core/package.json
index 2ca324f520..86b69a770c 100644
--- a/core/package.json
+++ b/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@ionic/core",
- "version": "4.0.0-alpha.10",
+ "version": "4.0.0-alpha.11",
"description": "Base components for Ionic",
"keywords": [
"ionic",
diff --git a/core/src/components/anchor/readme.md b/core/src/components/anchor/readme.md
index b25e7df9d3..ab79165f15 100644
--- a/core/src/components/anchor/readme.md
+++ b/core/src/components/anchor/readme.md
@@ -8,6 +8,13 @@ The Anchor component is used for navigating to a specified link. Similar to the
## Properties
+#### color
+
+string
+
+The color to use for the anchor.
+
+
#### href
string
@@ -26,6 +33,13 @@ another page using `href`.
## Attributes
+#### color
+
+string
+
+The color to use for the anchor.
+
+
#### href
string