Skip to content
This repository has been archived by the owner on May 18, 2021. It is now read-only.

Commit

Permalink
Releasing chrome-app-developer-tool v0.11.1
Browse files Browse the repository at this point in the history
  • Loading branch information
agrieve committed Dec 12, 2014
1 parent 53ed4d1 commit 06dd40a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,11 @@ Suggestions are always welcome! :)

# Release Notes

## v0.11.1 (December 12, 2014)

* Pushing large files is even faster
* Updated CCA plugins now work better with Polymer

## v0.11.0 (November 18, 2014)

* Fix "Unable to bind to port" message when wifi is disabled.
Expand Down
5 changes: 4 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,17 @@
- Update release notes (bottom of README.md)
- `git log --pretty=format:'* %s' --no-merges $(git describe --tags --abbrev=0)..HEAD`
- Trim them down liberally & reword them.
- Should also look at MCA logs: `git log --pretty=format:'* %s' --no-merges --since "FOO days ago"
- Where FOO is found here: https://github.com/MobileChromeApps/chrome-app-developer-tool/releases
- Update the version in `package.json` and `app.js`
- `vim package.json www/cdvah/js/app.js`
- Build apks with release plugins:
- `DISABLE_LOCAL_SEARCH_PATH=1 ./createproject.sh ChromeAppDevTool`
- `(cd ChromeAppDevTool && ./gradle-build.sh)`
- Double check:
- Signed correctly: `jarsigner -verify -keystore CCAHarness-debug.keystore PATH/android-armv7-debug.apk`
- Signed correctly: `jarsigner -verify -keystore template-overrides/CCAHarness-debug.keystore PATH/android-armv7-debug.apk`
- Can push from CDE with "Live deploy"
- `adb install PATH/android-armv7-debug.apk`
- Can push via `cca push --watch`
- Commit Changes
- `git commit -am "Releasing chrome-app-developer-tool v$(npm ls --depth=0 | head -n1 | sed -E 's:.*@| .*::g')"`
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "chrome-app-developer-tool",
"version": "0.11.1-dev",
"version": "0.11.1",
"description": "The Chrome App Developer Tool for Mobile (\"App Dev Tool\" for short) is a distribution of [Apache Cordova App Harness](https://git-wip-us.apache.org/repos/asf/cordova-app-harness.git) that can run Chrome Apps. It is based on the plugins from the [cca](https://github.com/MobileChomeApps/mobile-chrome-apps) toolkit.",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion www/cdvah/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
var myApp = angular.module('ChromeAppDeveloperTool', ['ngRoute', 'angularMoment']);

myApp.value('APP_NAME', 'Chrome App Developer Tool');
myApp.value('APP_VERSION', '0.11.1-dev');
myApp.value('APP_VERSION', '0.11.1');

myApp.config(['$routeProvider', function($routeProvider){
$routeProvider.when('/', {
Expand Down

0 comments on commit 06dd40a

Please sign in to comment.