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 f072c4b commit 8be5005
Show file tree
Hide file tree
Showing 7 changed files with 88 additions and 85 deletions.
8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-binding",
"version": "0.17.1",
"version": "1.0.0-beta.1",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand All @@ -18,8 +18,8 @@
"url": "http://github.com/aurelia/templating-binding"
},
"dependencies": {
"aurelia-binding": "^0.11.0",
"aurelia-logging": "^0.9.0",
"aurelia-templating": "^0.17.0"
"aurelia-binding": "^1.0.0-beta.1",
"aurelia-logging": "^1.0.0-beta.1",
"aurelia-templating": "^1.0.0-beta.1"
}
}
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();
});
86 changes: 43 additions & 43 deletions config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,52 +14,15 @@ System.config({
},

map: {
"aurelia-binding": "github:aurelia/binding@0.11.0",
"aurelia-logging": "github:aurelia/logging@0.9.0",
"aurelia-pal": "github:aurelia/pal@0.3.0",
"aurelia-pal-browser": "github:aurelia/pal-browser@0.3.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",
"aurelia-logging": "npm:aurelia-logging@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-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 @@ -75,6 +38,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]": {
"process": "github:jspm/[email protected]"
},
Expand Down
3 changes: 3 additions & 0 deletions 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.17.1 (2015-11-15)


Expand Down
22 changes: 11 additions & 11 deletions doc/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"type": {
"type": "reference",
"name": "ViewResources",
"id": 2202,
"id": 1068,
"moduleName": "\"aurelia-templating\""
}
},
Expand Down Expand Up @@ -116,20 +116,20 @@
"type": {
"type": "reference",
"name": "BehaviorInstruction",
"id": 2074,
"id": 940,
"moduleName": "\"aurelia-templating\""
},
"inheritedFrom": {
"type": "reference",
"name": "BindingLanguage.createAttributeInstruction",
"id": 2192
"id": 1058
}
}
],
"inheritedFrom": {
"type": "reference",
"name": "BindingLanguage.createAttributeInstruction",
"id": 2192
"id": 1058
}
},
{
Expand Down Expand Up @@ -164,7 +164,7 @@
"type": {
"type": "reference",
"name": "ViewResources",
"id": 2202,
"id": 1068,
"moduleName": "\"aurelia-templating\""
}
},
Expand Down Expand Up @@ -204,14 +204,14 @@
"inheritedFrom": {
"type": "reference",
"name": "BindingLanguage.inspectAttribute",
"id": 2187
"id": 1053
}
}
],
"inheritedFrom": {
"type": "reference",
"name": "BindingLanguage.inspectAttribute",
"id": 2187
"id": 1053
}
},
{
Expand Down Expand Up @@ -246,7 +246,7 @@
"type": {
"type": "reference",
"name": "ViewResources",
"id": 2202,
"id": 1068,
"moduleName": "\"aurelia-templating\""
}
},
Expand All @@ -272,14 +272,14 @@
"inheritedFrom": {
"type": "reference",
"name": "BindingLanguage.parseText",
"id": 2198
"id": 1064
}
}
],
"inheritedFrom": {
"type": "reference",
"name": "BindingLanguage.parseText",
"id": 2198
"id": 1064
}
}
],
Expand All @@ -298,7 +298,7 @@
{
"type": "reference",
"name": "BindingLanguage",
"id": 2186
"id": 1052
}
]
}
Expand Down
24 changes: 15 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating-binding",
"version": "0.17.1",
"version": "1.0.0-beta.1",
"description": "An implementation of the templating engine's Binding Language abstraction which uses a pluggable command syntax.",
"keywords": [
"aurelia",
Expand All @@ -19,29 +19,35 @@
"type": "git",
"url": "http://github.com/aurelia/templating-binding"
},
"jspmNodeConversion": false,
"jspm": {
"main": "aurelia-templating-binding",
"format": "amd",
"directories": {
"lib": "dist/amd"
},
"dependencies": {
"aurelia-binding": "github:aurelia/binding@^0.11.0",
"aurelia-logging": "github:aurelia/logging@^0.9.0",
"aurelia-templating": "github:aurelia/templating@^0.17.0"
"aurelia-binding": "npm:aurelia-binding@^1.0.0-beta.1",
"aurelia-logging": "npm:aurelia-logging@^1.0.0-beta.1",
"aurelia-templating": "npm:aurelia-templating@^1.0.0-beta.1"
},
"devDependencies": {
"aurelia-pal": "github:aurelia/pal@^0.3.0",
"aurelia-pal-browser": "github:aurelia/pal-browser@^0.3.0",
"aurelia-task-queue": "github:aurelia/task-queue@^0.9.0",
"aurelia-pal": "npm:aurelia-pal@^1.0.0-beta.1",
"aurelia-pal-browser": "npm:aurelia-pal-browser@^1.0.0-beta.1",
"aurelia-task-queue": "npm:aurelia-task-queue@^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",
"aurelia-logging": "^1.0.0-beta.1",
"aurelia-templating": "^1.0.0-beta.1"
},
"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 @@ -55,7 +61,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 8be5005

Please sign in to comment.