diff --git a/CHANGELOG.md b/CHANGELOG.md
index 20fbe6599c..0609f0d66a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -110,6 +110,8 @@ New Code:
* **ionNavBar, ionView**: Remove `left-buttons`, `right-buttons`, `type`, `animation`,
`back-button-*` attributes from ionNavBar. Remove `left-buttons`, `right-buttons` from ionView.
+Additionally, all 'viewState.*' have been removed.
+
Relevant Documentation: [ionNavBar](http://ionicframework.com/docs/api/directive/ionNavBar),
[ionView](http://ionicframework.com/docs/api/directive/ionView),
[ionNavBackButton](http://ionicframework.com/docs/api/directive/ionNavBackButton) (new),
diff --git a/js/ext/angular/test/radioButton.html b/js/ext/angular/test/radioButton.html
deleted file mode 100644
index a179455e2f..0000000000
--- a/js/ext/angular/test/radioButton.html
+++ /dev/null
@@ -1,60 +0,0 @@
-
-
-
- Radio
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/js/ext/angular/test/viewState.html b/js/ext/angular/test/viewState.html
index 3582b37802..67c87c3dac 100644
--- a/js/ext/angular/test/viewState.html
+++ b/js/ext/angular/test/viewState.html
@@ -354,14 +354,14 @@
};
})
- .controller('AutoDetailCtrl', function($scope, $state, $stateParams) {
+ .controller('AutoDetailCtrl', function($scope, $state, $stateParams, $ionicNavBarDelegate) {
$scope.autoDetailData = "AutoDetailCtrl Data";
$scope.hideBackButton = function() {
- $scope.$emit('viewState.showBackButton', false);
+ $ionicNavBarDelegate.showBackButton(false);
};
$scope.showBackButton = function() {
- $scope.$emit('viewState.showBackButton', true);
+ $ionicNavBarDelegate.showBackButton(true);
};
$scope.auto = $scope.autos[$stateParams.id];
diff --git a/package.json b/package.json
index 5d8a030444..3b16faf352 100644
--- a/package.json
+++ b/package.json
@@ -1,8 +1,8 @@
{
"name": "ionic",
"private": false,
- "version": "0.9.27",
- "codename": "salamander",
+ "version": "1.0.0-beta.1",
+ "codename": "actinium",
"repository": {
"url": "git://github.com/driftyco/ionic.git"
},