Skip to content

Commit 8c237c3

Browse files
chore(all): prepare release 1.3.1
1 parent 5a6484a commit 8c237c3

6 files changed

+10
-5
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-dependency-injection",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "A lightweight, extensible dependency injection container for JavaScript.",
55
"keywords": [
66
"aurelia",

dist/aurelia-dependency-injection.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ export declare function registration(value: Registration): any;
268268
*/
269269
export declare function transient(key?: any): any;
270270
/**
271-
* Decorator: Specifies to register the decorated item with a "singleton" lieftime.
271+
* Decorator: Specifies to register the decorated item with a "singleton" lifetime.
272272
*/
273273
export declare function singleton(keyOrRegisterInChild?: any, registerInChild?: boolean): any;
274274
/**

dist/aurelia-dependency-injection.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -513,7 +513,7 @@ export function transient(key?: any): any {
513513
}
514514

515515
/**
516-
* Decorator: Specifies to register the decorated item with a "singleton" lieftime.
516+
* Decorator: Specifies to register the decorated item with a "singleton" lifetime.
517517
*/
518518
export function singleton(keyOrRegisterInChild?: any, registerInChild: boolean = false): any {
519519
return registration(new SingletonRegistration(keyOrRegisterInChild, registerInChild));

doc/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
<a name="1.3.1"></a>
2+
## [1.3.1](https://github.com/aurelia/dependency-injection/compare/1.3.0...v1.3.1) (2017-04-05)
3+
4+
* Documentation update.
5+
16
<a name="1.3.0"></a>
27
# [1.3.0](https://github.com/aurelia/dependency-injection/compare/1.2.1...v1.3.0) (2017-01-12)
38

doc/api.json

+1-1
Large diffs are not rendered by default.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-dependency-injection",
3-
"version": "1.3.0",
3+
"version": "1.3.1",
44
"description": "A lightweight, extensible dependency injection container for JavaScript.",
55
"keywords": [
66
"aurelia",

0 commit comments

Comments
 (0)