Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Nov 16, 2015
1 parent 9f0743a commit dbeb8a4
Show file tree
Hide file tree
Showing 7 changed files with 105 additions and 96 deletions.
20 changes: 10 additions & 10 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-framework",
"version": "0.18.0",
"version": "1.0.0-beta.1",
"description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.",
"keywords": [
"aurelia",
Expand All @@ -17,15 +17,15 @@
"url": "http://github.com/aurelia/framework"
},
"dependencies": {
"aurelia-binding": "^0.11.0",
"aurelia-dependency-injection": "^0.12.0",
"aurelia-loader": "^0.11.0",
"aurelia-logging": "^0.9.0",
"aurelia-metadata": "^0.10.0",
"aurelia-pal": "^0.3.0",
"aurelia-path": "^0.11.0",
"aurelia-task-queue": "^0.9.0",
"aurelia-templating": "^0.17.0",
"aurelia-binding": "^1.0.0-beta.1.0.1",
"aurelia-dependency-injection": "^1.0.0-beta.1",
"aurelia-loader": "^1.0.0-beta.1",
"aurelia-logging": "^1.0.0-beta.1",
"aurelia-metadata": "^1.0.0-beta.1",
"aurelia-pal": "^1.0.0-beta.1",
"aurelia-path": "^1.0.0-beta.1",
"aurelia-task-queue": "^1.0.0-beta.1",
"aurelia-templating": "^1.0.0-beta.1",
"core-js": "zloirock/core-js"
}
}
4 changes: 2 additions & 2 deletions build/tasks/doc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ var typedocExtractor = require("gulp-typedoc-extractor");
var runSequence = require('run-sequence');

gulp.task('doc-generate', function(){
return gulp.src([paths.output + '*.d.ts', paths.doc + '/core-js.d.ts', './jspm_packages/github/aurelia/*/*.d.ts'])
return gulp.src([paths.output + '*.d.ts', paths.doc + '/core-js.d.ts', './jspm_packages/npm/*/*.d.ts'])
.pipe(typedoc({
            target"es6",
            includeDeclarationstrue,
Expand All @@ -30,4 +30,4 @@ gulp.task('doc', function(callback){
'doc-extract',
callback
);
});
});
26 changes: 10 additions & 16 deletions build/tasks/test.js
Original file line number Diff line number Diff line change
@@ -1,34 +1,30 @@
var gulp = require('gulp');
var karma = require('karma').server;
var Karma = require('karma').Server;

/**
* Run test once and exit
*/
gulp.task('test', function (done) {
karma.start({
configFile: __dirname + '/../../karma.conf.js',
singleRun: true
}, function(e) {
done();
});
new Karma({
configFile: __dirname + '/../../karma.conf.js',
singleRun: true
}, done).start();
});

/**
* Watch for file changes and re-run tests on each change
*/
gulp.task('tdd', function (done) {
karma.start({
configFile: __dirname + '/../../karma.conf.js'
}, function(e) {
done();
});
new Karma({
configFile: __dirname + '/../../karma.conf.js'
}, done).start();
});

/**
* Run test once with code coverage and exit
*/
gulp.task('cover', function (done) {
karma.start({
new Karma({
configFile: __dirname + '/../../karma.conf.js',
singleRun: true,
reporters: ['coverage'],
Expand All @@ -40,7 +36,5 @@ gulp.task('cover', function (done) {
type: 'html',
dir: 'build/reports/coverage'
}
}, function (e) {
done();
});
}, done).start();
});
94 changes: 47 additions & 47 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,56 +14,19 @@ System.config({
},

map: {
"aurelia-binding": "github:aurelia/binding@0.11.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@0.12.0",
"aurelia-loader": "github:aurelia/loader@0.11.0",
"aurelia-logging": "github:aurelia/logging@0.9.0",
"aurelia-metadata": "github:aurelia/metadata@0.10.0",
"aurelia-pal": "github:aurelia/pal@0.3.0",
"aurelia-pal-browser": "github:aurelia/pal-browser@0.3.0",
"aurelia-path": "github:aurelia/path@0.11.0",
"aurelia-task-queue": "github:aurelia/task-queue@0.9.0",
"aurelia-templating": "github:aurelia/templating@0.17.0",
"aurelia-binding": "npm:aurelia-binding@1.0.0-beta.1.0.1",
"aurelia-dependency-injection": "npm:aurelia-dependency-injection@1.0.0-beta.1",
"aurelia-loader": "npm:aurelia-loader@1.0.0-beta.1",
"aurelia-logging": "npm:aurelia-logging@1.0.0-beta.1",
"aurelia-metadata": "npm:aurelia-metadata@1.0.0-beta.1",
"aurelia-pal": "npm:aurelia-pal@1.0.0-beta.1",
"aurelia-pal-browser": "npm:aurelia-pal-browser@1.0.0-beta.1",
"aurelia-path": "npm:aurelia-path@1.0.0-beta.1",
"aurelia-task-queue": "npm:aurelia-task-queue@1.0.0-beta.1",
"aurelia-templating": "npm:aurelia-templating@1.0.0-beta.1",
"babel": "npm:[email protected]",
"babel-runtime": "npm:[email protected]",
"core-js": "npm:[email protected]",
"github:aurelia/[email protected]": {
"aurelia-metadata": "github:aurelia/[email protected]",
"aurelia-pal": "github:aurelia/[email protected]",
"aurelia-task-queue": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"aurelia-pal": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-metadata": "github:aurelia/[email protected]",
"aurelia-path": "github:aurelia/[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-pal": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-pal": "github:aurelia/[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-pal": "github:aurelia/[email protected]"
},
"github:aurelia/[email protected]": {
"aurelia-binding": "github:aurelia/[email protected]",
"aurelia-dependency-injection": "github:aurelia/[email protected]",
"aurelia-loader": "github:aurelia/[email protected]",
"aurelia-logging": "github:aurelia/[email protected]",
"aurelia-metadata": "github:aurelia/[email protected]",
"aurelia-pal": "github:aurelia/[email protected]",
"aurelia-path": "github:aurelia/[email protected]",
"aurelia-task-queue": "github:aurelia/[email protected]",
"core-js": "npm:[email protected]"
},
"github:jspm/[email protected]": {
"assert": "npm:[email protected]"
},
Expand All @@ -79,6 +42,43 @@ System.config({
"npm:[email protected]": {
"util": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-metadata": "npm:[email protected]",
"aurelia-pal": "npm:[email protected]",
"aurelia-task-queue": "npm:[email protected]",
"core-js": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-logging": "npm:[email protected]",
"aurelia-metadata": "npm:[email protected]",
"aurelia-pal": "npm:[email protected]",
"core-js": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-metadata": "npm:[email protected]",
"aurelia-path": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-pal": "npm:[email protected]",
"core-js": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-pal": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-pal": "npm:[email protected]"
},
"npm:[email protected]": {
"aurelia-binding": "npm:[email protected]",
"aurelia-dependency-injection": "npm:[email protected]",
"aurelia-loader": "npm:[email protected]",
"aurelia-logging": "npm:[email protected]",
"aurelia-metadata": "npm:[email protected]",
"aurelia-pal": "npm:[email protected]",
"aurelia-path": "npm:[email protected]",
"aurelia-task-queue": "npm:[email protected]",
"core-js": "npm:[email protected]"
},
"npm:[email protected]": {
"fs": "github:jspm/[email protected]",
"path": "github:jspm/[email protected]",
Expand Down
4 changes: 3 additions & 1 deletion doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 1.0.0-beta.1 (2015-11-16)


## 0.18.0 (2015-11-10)


Expand Down Expand Up @@ -458,4 +461,3 @@ function, this will affect you as that is no longer present.
#### Bug Fixes

* **package:** update dependencies to their latest versions ([fe83ef37](http://github.com/aurelia/framework/commit/fe83ef37fdcdf878dd79564ed9b97ee56de8d621))

14 changes: 7 additions & 7 deletions doc/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"type": {
"type": "reference",
"name": "Loader",
"id": 1714,
"id": 605,
"moduleName": "\"aurelia-loader\""
}
},
Expand All @@ -71,7 +71,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 1593,
"id": 484,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand All @@ -89,7 +89,7 @@
"type": {
"type": "reference",
"name": "ViewResources",
"id": 2261,
"id": 1158,
"moduleName": "\"aurelia-templating\""
}
}
Expand Down Expand Up @@ -117,7 +117,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 1593,
"id": 484,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand All @@ -135,7 +135,7 @@
"type": {
"type": "reference",
"name": "Loader",
"id": 1714,
"id": 605,
"moduleName": "\"aurelia-loader\""
}
},
Expand All @@ -153,7 +153,7 @@
"type": {
"type": "reference",
"name": "ViewResources",
"id": 2261,
"id": 1158,
"moduleName": "\"aurelia-templating\""
}
},
Expand Down Expand Up @@ -482,7 +482,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 1593,
"id": 484,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down
39 changes: 26 additions & 13 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-framework",
"version": "0.18.0",
"version": "1.0.0-beta.1",
"description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.",
"keywords": [
"aurelia",
Expand All @@ -18,34 +18,47 @@
"type": "git",
"url": "http://github.com/aurelia/framework"
},
"jspmNodeConversion": false,
"jspm": {
"main": "aurelia-framework",
"format": "amd",
"directories": {
"lib": "dist/amd"
},
"dependencies": {
"aurelia-binding": "github:aurelia/binding@^0.11.0",
"aurelia-dependency-injection": "github:aurelia/dependency-injection@^0.12.0",
"aurelia-loader": "github:aurelia/loader@^0.11.0",
"aurelia-logging": "github:aurelia/logging@^0.9.0",
"aurelia-metadata": "github:aurelia/metadata@^0.10.0",
"aurelia-pal": "github:aurelia/pal@^0.3.0",
"aurelia-path": "github:aurelia/path@^0.11.0",
"aurelia-task-queue": "github:aurelia/task-queue@^0.9.0",
"aurelia-templating": "github:aurelia/templating@^0.17.0",
"aurelia-binding": "npm:aurelia-binding@^1.0.0-beta.1.0.1",
"aurelia-dependency-injection": "npm:aurelia-dependency-injection@^1.0.0-beta.1",
"aurelia-loader": "npm:aurelia-loader@^1.0.0-beta.1",
"aurelia-logging": "npm:aurelia-logging@^1.0.0-beta.1",
"aurelia-metadata": "npm:aurelia-metadata@^1.0.0-beta.1",
"aurelia-pal": "npm:aurelia-pal@^1.0.0-beta.1",
"aurelia-path": "npm:aurelia-path@^1.0.0-beta.1",
"aurelia-task-queue": "npm:aurelia-task-queue@^1.0.0-beta.1",
"aurelia-templating": "npm:aurelia-templating@^1.0.0-beta.1",
"core-js": "npm:core-js@^1.2.6"
},
"devDependencies": {
"aurelia-pal-browser": "github:aurelia/pal-browser@^0.3.0",
"aurelia-pal-browser": "npm:aurelia-pal-browser@^1.0.0-beta.1",
"babel": "npm:babel-core@^5.1.13",
"babel-runtime": "npm:babel-runtime@^5.1.13",
"core-js": "npm:core-js@^1.2.6"
}
},
"dependencies": {
"aurelia-binding": "^1.0.0-beta.1.0.1",
"aurelia-dependency-injection": "^1.0.0-beta.1",
"aurelia-loader": "^1.0.0-beta.1",
"aurelia-logging": "^1.0.0-beta.1",
"aurelia-metadata": "^1.0.0-beta.1",
"aurelia-pal": "^1.0.0-beta.1",
"aurelia-path": "^1.0.0-beta.1",
"aurelia-task-queue": "^1.0.0-beta.1",
"aurelia-templating": "^1.0.0-beta.1",
"core-js": "^1.2.6"
},
"devDependencies": {
"aurelia-tools": "^0.1.12",
"babel-dts-generator": "^0.2.16",
"babel-dts-generator": "^0.2.17",
"babel-eslint": "^4.1.1",
"conventional-changelog": "0.0.11",
"del": "^1.1.0",
Expand All @@ -59,7 +72,7 @@
"gulp-typedoc": "^1.2.1",
"gulp-typedoc-extractor": "0.0.8",
"jasmine-core": "^2.1.3",
"karma": "^0.12.28",
"karma": "^0.13.15",
"karma-babel-preprocessor": "^5.2.2",
"karma-chrome-launcher": "^0.1.7",
"karma-coverage": "^0.3.1",
Expand Down

0 comments on commit dbeb8a4

Please sign in to comment.