Skip to content

Commit

Permalink
chore(all): prepare release 1.0.0-beta.1.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Mar 4, 2016
1 parent d411139 commit 7648d1c
Show file tree
Hide file tree
Showing 14 changed files with 51 additions and 43 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aurelia-templating",
"version": "1.0.0-beta.1.1.2",
"version": "1.0.0-beta.1.1.3",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
initialize(container: Container): void;

/**
* Registrers the resources in the module with the view resources.
* Registers the resources in the module with the view resources.
* @param registry The registry of view resources to regiser within.
* @param name The name to use in registering the default resource.
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/amd/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4046,7 +4046,7 @@ define(['exports', 'aurelia-logging', 'aurelia-pal', 'aurelia-metadata', 'aureli
ElementConfigResource.prototype.register = function register(registry, name) {};

ElementConfigResource.prototype.load = function load(container, target) {
var config = new Target();
var config = new target();
var eventManager = container.get(_aureliaBinding.EventManager);
eventManager.registerElementConfig(config);
};
Expand Down
2 changes: 1 addition & 1 deletion dist/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
initialize(container: Container): void;

/**
* Registrers the resources in the module with the view resources.
* Registers the resources in the module with the view resources.
* @param registry The registry of view resources to regiser within.
* @param name The name to use in registering the default resource.
*/
Expand Down
4 changes: 2 additions & 2 deletions dist/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -2932,7 +2932,7 @@ export class ResourceModule {
}

/**
* Registrers the resources in the module with the view resources.
* Registers the resources in the module with the view resources.
* @param registry The registry of view resources to regiser within.
* @param name The name to use in registering the default resource.
*/
Expand Down Expand Up @@ -4829,7 +4829,7 @@ export class ElementConfigResource {
* @param target The class to which this resource metadata is attached.
*/
load(container: Container, target: Function): void {
let config = new Target();
let config = new target();
let eventManager = container.get(EventManager);
eventManager.registerElementConfig(config);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
initialize(container: Container): void;

/**
* Registrers the resources in the module with the view resources.
* Registers the resources in the module with the view resources.
* @param registry The registry of view resources to regiser within.
* @param name The name to use in registering the default resource.
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/commonjs/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4065,7 +4065,7 @@ var ElementConfigResource = (function () {
ElementConfigResource.prototype.register = function register(registry, name) {};

ElementConfigResource.prototype.load = function load(container, target) {
var config = new Target();
var config = new target();
var eventManager = container.get(_aureliaBinding.EventManager);
eventManager.registerElementConfig(config);
};
Expand Down
2 changes: 1 addition & 1 deletion dist/es6/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
initialize(container: Container): void;

/**
* Registrers the resources in the module with the view resources.
* Registers the resources in the module with the view resources.
* @param registry The registry of view resources to regiser within.
* @param name The name to use in registering the default resource.
*/
Expand Down
4 changes: 2 additions & 2 deletions dist/es6/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -2932,7 +2932,7 @@ export class ResourceModule {
}

/**
* Registrers the resources in the module with the view resources.
* Registers the resources in the module with the view resources.
* @param registry The registry of view resources to regiser within.
* @param name The name to use in registering the default resource.
*/
Expand Down Expand Up @@ -4829,7 +4829,7 @@ export class ElementConfigResource {
* @param target The class to which this resource metadata is attached.
*/
load(container: Container, target: Function): void {
let config = new Target();
let config = new target();
let eventManager = container.get(EventManager);
eventManager.registerElementConfig(config);
}
Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-templating.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1079,7 +1079,7 @@ declare module 'aurelia-templating' {
initialize(container: Container): void;

/**
* Registrers the resources in the module with the view resources.
* Registers the resources in the module with the view resources.
* @param registry The registry of view resources to regiser within.
* @param name The name to use in registering the default resource.
*/
Expand Down
2 changes: 1 addition & 1 deletion dist/system/aurelia-templating.js
Original file line number Diff line number Diff line change
Expand Up @@ -4253,7 +4253,7 @@ System.register(['aurelia-logging', 'aurelia-pal', 'aurelia-metadata', 'aurelia-
ElementConfigResource.prototype.register = function register(registry, name) {};

ElementConfigResource.prototype.load = function load(container, target) {
var config = new Target();
var config = new target();
var eventManager = container.get(EventManager);
eventManager.registerElementConfig(config);
};
Expand Down
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 1.0.0-beta.1.1.3 (2016-03-04)


#### Bug Fixes

* **element-config:** fix parameter name typo ([000f0de3](http://github.com/aurelia/templating/commit/000f0de38e6abb70244f94a2c189db485ce7bf1b))


### 1.0.0-beta.1.1.2 (2016-03-01)


Expand Down
58 changes: 29 additions & 29 deletions doc/api.json
Original file line number Diff line number Diff line change
Expand Up @@ -902,7 +902,7 @@
"type": {
"type": "reference",
"name": "TaskQueue",
"id": 1650,
"id": 1652,
"moduleName": "\"aurelia-task-queue\""
}
},
Expand Down Expand Up @@ -1747,7 +1747,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -3185,7 +3185,7 @@
"type": {
"type": "reference",
"name": "Origin",
"id": 1483,
"id": 1463,
"moduleName": "\"aurelia-metadata\""
}
}
Expand Down Expand Up @@ -3345,7 +3345,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -3402,7 +3402,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -4084,7 +4084,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -4137,7 +4137,7 @@
"type": "reference",
"isArray": true,
"name": "Binding",
"id": 1267,
"id": 930,
"moduleName": "\"aurelia-binding\""
}
}
Expand Down Expand Up @@ -4182,7 +4182,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -4239,7 +4239,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -5106,7 +5106,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -5621,7 +5621,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
}
Expand Down Expand Up @@ -5665,7 +5665,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -6019,7 +6019,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
}
Expand Down Expand Up @@ -6063,7 +6063,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -6115,7 +6115,7 @@
"kindString": "Call signature",
"flags": {},
"comment": {
"shortText": "Registrers the resources in the module with the view resources."
"shortText": "Registers the resources in the module with the view resources."
},
"parameters": [
{
Expand Down Expand Up @@ -6733,7 +6733,7 @@
"type": {
"type": "reference",
"name": "TemplateRegistryEntry",
"id": 1031,
"id": 1312,
"moduleName": "\"aurelia-loader\""
}
}
Expand Down Expand Up @@ -6896,7 +6896,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -7361,7 +7361,7 @@
"type": "reference",
"isArray": true,
"name": "Binding",
"id": 1267,
"id": 930,
"moduleName": "\"aurelia-binding\""
}
},
Expand Down Expand Up @@ -8123,7 +8123,7 @@
"type": {
"type": "reference",
"name": "Loader",
"id": 1046,
"id": 1327,
"moduleName": "\"aurelia-loader\""
}
},
Expand All @@ -8139,7 +8139,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -8465,7 +8465,7 @@
"type": {
"type": "reference",
"name": "TemplateRegistryEntry",
"id": 1031,
"id": 1312,
"moduleName": "\"aurelia-loader\""
}
},
Expand Down Expand Up @@ -8559,7 +8559,7 @@
{
"type": "reference",
"name": "TemplateRegistryEntry",
"id": 1031
"id": 1312
}
]
}
Expand Down Expand Up @@ -8773,7 +8773,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925,
"id": 1206,
"moduleName": "\"aurelia-dependency-injection\""
}
},
Expand Down Expand Up @@ -9045,7 +9045,7 @@
"type": {
"type": "reference",
"name": "Origin",
"id": 1483,
"id": 1463,
"moduleName": "\"aurelia-metadata\""
}
}
Expand Down Expand Up @@ -9089,7 +9089,7 @@
"type": {
"type": "reference",
"name": "Origin",
"id": 1483,
"id": 1463,
"moduleName": "\"aurelia-metadata\""
}
}
Expand Down Expand Up @@ -10628,7 +10628,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925
"id": 1206
}
},
{
Expand All @@ -10645,7 +10645,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925
"id": 1206
}
},
{
Expand Down Expand Up @@ -10969,7 +10969,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925
"id": 1206
}
},
{
Expand Down Expand Up @@ -11440,7 +11440,7 @@
"type": {
"type": "reference",
"name": "Container",
"id": 925
"id": 1206
}
},
{
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": "aurelia-templating",
"version": "1.0.0-beta.1.1.2",
"version": "1.0.0-beta.1.1.3",
"description": "An extensible HTML templating engine supporting databinding, custom elements, attached behaviors and more.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 7648d1c

Please sign in to comment.