Skip to content

Commit ae4df59

Browse files
chore(all): prepare release 1.0.0-beta.1.1.0
1 parent 11d1686 commit ae4df59

9 files changed

+21
-8
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-dependency-injection",
3-
"version": "1.0.0-beta.1.0.1",
3+
"version": "1.0.0-beta.1.1.0",
44
"description": "A lightweight, extensible dependency injection container for JavaScript.",
55
"keywords": [
66
"aurelia",

build/tasks/doc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ var typedocExtractor = require('gulp-typedoc-extractor');
55
var runSequence = require('run-sequence');
66

77
gulp.task('doc-generate', function(){
8-
return gulp.src([paths.output + '*.d.ts', paths.doc + '/core-js.d.ts', './jspm_packages/npm/*/*.d.ts'])
8+
return gulp.src([paths.output + '*.d.ts', './jspm_packages/npm/*/dist/*.d.ts'])
99
.pipe(typedoc({
1010
target'es6',
1111
includeDeclarationstrue,

dist/amd/aurelia-dependency-injection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ define(['exports', 'core-js', 'aurelia-metadata', 'aurelia-pal'], function (expo
534534
return results;
535535
}
536536

537-
return resolver.get(this, key);
537+
return [resolver.get(this, key)];
538538
};
539539

540540
Container.prototype.createChild = function createChild() {

dist/aurelia-dependency-injection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ export class Container {
773773
return results;
774774
}
775775

776-
return resolver.get(this, key);
776+
return [resolver.get(this, key)];
777777
}
778778

779779
/**

dist/commonjs/aurelia-dependency-injection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ var Container = (function () {
539539
return results;
540540
}
541541

542-
return resolver.get(this, key);
542+
return [resolver.get(this, key)];
543543
};
544544

545545
Container.prototype.createChild = function createChild() {

dist/es6/aurelia-dependency-injection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -773,7 +773,7 @@ export class Container {
773773
return results;
774774
}
775775

776-
return resolver.get(this, key);
776+
return [resolver.get(this, key)];
777777
}
778778

779779
/**

dist/system/aurelia-dependency-injection.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -572,7 +572,7 @@ System.register(['core-js', 'aurelia-metadata', 'aurelia-pal'], function (_expor
572572
return results;
573573
}
574574

575-
return resolver.get(this, key);
575+
return [resolver.get(this, key)];
576576
};
577577

578578
Container.prototype.createChild = function createChild() {

doc/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
### 1.0.0-beta.1.1.0 (2016-01-28)
2+
3+
4+
#### Bug Fixes
5+
6+
* **container:** correct inconsistent return type from getAll ([bbbef9e5](http://github.com/aurelia/dependency-injection/commit/bbbef9e582e4a81497db5655c7a7e9d2d1e5c10a), closes [#71](http://github.com/aurelia/dependency-injection/issues/71))
7+
8+
9+
#### Features
10+
11+
* **all:** update for jspm; update core-js; update aurelia deps ([11d16867](http://github.com/aurelia/dependency-injection/commit/11d1686765c626896dbb3d5edb7f5b40da9dd5ca))
12+
13+
114
### 1.0.0-beta.1.0.1 (2016-01-08)
215

316
* minor perf work

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-dependency-injection",
3-
"version": "1.0.0-beta.1.0.1",
3+
"version": "1.0.0-beta.1.1.0",
44
"description": "A lightweight, extensible dependency injection container for JavaScript.",
55
"keywords": [
66
"aurelia",

0 commit comments

Comments
 (0)