Skip to content

Commit 1245bed

Browse files
chore(all): prepare release 1.3.0-rc.2
1 parent 0e14f8d commit 1245bed

File tree

9 files changed

+18
-8
lines changed

9 files changed

+18
-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-framework",
3-
"version": "1.3.0-rc.1",
3+
"version": "1.3.0-rc.2",
44
"description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.",
55
"keywords": [
66
"aurelia",

dist/amd/aurelia-framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ define(['exports', 'aurelia-dependency-injection', 'aurelia-binding', 'aurelia-m
529529
var _this6 = this;
530530

531531
var plugin = { moduleId: name, resourcesRelativeTo: [name, ''], config: config || {} };
532-
this.plugin(plugin);
532+
this.info.push(plugin);
533533

534534
this.preTask(function () {
535535
var relativeTo = [name, _this6.bootstrapperName];

dist/aurelia-framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -529,7 +529,7 @@ export class FrameworkConfiguration {
529529
530530
_addNormalizedPlugin(name, config) {
531531
let plugin = { moduleId: name, resourcesRelativeTo: [name, ''], config: config || {} };
532-
this.plugin(plugin);
532+
this.info.push(plugin);
533533
534534
this.preTask(() => {
535535
let relativeTo = [name, this.bootstrapperName];

dist/commonjs/aurelia-framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ var FrameworkConfiguration = function () {
535535
var _this6 = this;
536536

537537
var plugin = { moduleId: name, resourcesRelativeTo: [name, ''], config: config || {} };
538-
this.plugin(plugin);
538+
this.info.push(plugin);
539539

540540
this.preTask(function () {
541541
var relativeTo = [name, _this6.bootstrapperName];

dist/es2015/aurelia-framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ export let FrameworkConfiguration = class FrameworkConfiguration {
387387

388388
_addNormalizedPlugin(name, config) {
389389
let plugin = { moduleId: name, resourcesRelativeTo: [name, ''], config: config || {} };
390-
this.plugin(plugin);
390+
this.info.push(plugin);
391391

392392
this.preTask(() => {
393393
let relativeTo = [name, this.bootstrapperName];

dist/native-modules/aurelia-framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ var FrameworkConfiguration = function () {
433433
var _this6 = this;
434434

435435
var plugin = { moduleId: name, resourcesRelativeTo: [name, ''], config: config || {} };
436-
this.plugin(plugin);
436+
this.info.push(plugin);
437437

438438
this.preTask(function () {
439439
var relativeTo = [name, _this6.bootstrapperName];

dist/system/aurelia-framework.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ System.register(['aurelia-logging', 'aurelia-dependency-injection', 'aurelia-loa
521521
var _this6 = this;
522522

523523
var plugin = { moduleId: name, resourcesRelativeTo: [name, ''], config: config || {} };
524-
this.plugin(plugin);
524+
this.info.push(plugin);
525525

526526
this.preTask(function () {
527527
var relativeTo = [name, _this6.bootstrapperName];

doc/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
<a name="1.3.0-rc.2"></a>
2+
# [1.3.0-rc.2](https://github.com/aurelia/framework/compare/1.3.0-rc.1...1.3.0-rc.2) (2018-06-21)
3+
4+
5+
### Bug Fixes
6+
7+
* **FrameworkConfiguration:** use private info ([5a51394](https://github.com/aurelia/framework/commit/5a51394))
8+
9+
10+
111
<a name="1.3.0-rc.1"></a>
212
# [1.3.0-rc.1](https://github.com/aurelia/framework/compare/1.2.0...1.3.0-rc.1) (2018-06-21)
313

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "aurelia-framework",
3-
"version": "1.3.0-rc.1",
3+
"version": "1.3.0-rc.2",
44
"description": "The aurelia framework brings together all the required core aurelia libraries into a ready-to-go application-building platform.",
55
"keywords": [
66
"aurelia",

0 commit comments

Comments
 (0)