Skip to content

Commit

Permalink
chore(all): prepare release 0.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Feb 19, 2015
1 parent 0b99828 commit c8272b9
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 35 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-logging",
"version": "0.2.2",
"version": "0.2.3",
"description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.",
"keywords": [
"aurelia",
Expand Down
14 changes: 3 additions & 11 deletions dist/amd/index.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
define(["exports"], function (exports) {
"use strict";

var _prototypeProperties = function (child, staticProps, instanceProps) {
if (staticProps) Object.defineProperties(child, staticProps);
if (instanceProps) Object.defineProperties(child.prototype, instanceProps);
};
var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); };

exports.getLogger = getLogger;
exports.addAppender = addAppender;
Expand Down Expand Up @@ -103,7 +100,7 @@ define(["exports"], function (exports) {
logLevel = level;
}

var Logger = (function () {
var Logger = exports.Logger = (function () {
function Logger(id, key) {
if (key !== loggerConstructionKey) {
throw new Error("You cannot instantiate \"Logger\". Use the \"getLogger\" API instead.");
Expand All @@ -116,31 +113,26 @@ define(["exports"], function (exports) {
debug: {
value: function debug() {},
writable: true,
enumerable: true,
configurable: true
},
info: {
value: function info() {},
writable: true,
enumerable: true,
configurable: true
},
warn: {
value: function warn() {},
writable: true,
enumerable: true,
configurable: true
},
error: {
value: function error() {},
writable: true,
enumerable: true,
configurable: true
}
});

return Logger;
})();

exports.Logger = Logger;
exports.__esModule = true;
});
14 changes: 3 additions & 11 deletions dist/commonjs/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,6 @@
"use strict";

var _prototypeProperties = function (child, staticProps, instanceProps) {
if (staticProps) Object.defineProperties(child, staticProps);
if (instanceProps) Object.defineProperties(child.prototype, instanceProps);
};
var _prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); };

exports.getLogger = getLogger;
exports.addAppender = addAppender;
Expand Down Expand Up @@ -102,7 +99,7 @@ function setLevel(level) {
logLevel = level;
}

var Logger = (function () {
var Logger = exports.Logger = (function () {
function Logger(id, key) {
if (key !== loggerConstructionKey) {
throw new Error("You cannot instantiate \"Logger\". Use the \"getLogger\" API instead.");
Expand All @@ -115,30 +112,25 @@ var Logger = (function () {
debug: {
value: function debug() {},
writable: true,
enumerable: true,
configurable: true
},
info: {
value: function info() {},
writable: true,
enumerable: true,
configurable: true
},
warn: {
value: function warn() {},
writable: true,
enumerable: true,
configurable: true
},
error: {
value: function error() {},
writable: true,
enumerable: true,
configurable: true
}
});

return Logger;
})();

exports.Logger = Logger;
exports.__esModule = true;
14 changes: 3 additions & 11 deletions dist/system/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,7 @@ System.register([], function (_export) {
return {
setters: [],
execute: function () {
_prototypeProperties = function (child, staticProps, instanceProps) {
if (staticProps) Object.defineProperties(child, staticProps);
if (instanceProps) Object.defineProperties(child.prototype, instanceProps);
};
_prototypeProperties = function (child, staticProps, instanceProps) { if (staticProps) Object.defineProperties(child, staticProps); if (instanceProps) Object.defineProperties(child.prototype, instanceProps); };

levels = _export("levels", {
none: 0,
Expand All @@ -108,7 +105,7 @@ System.register([], function (_export) {
appenders = [];
slice = Array.prototype.slice;
loggerConstructionKey = {};
Logger = (function () {
Logger = _export("Logger", (function () {
function Logger(id, key) {
if (key !== loggerConstructionKey) {
throw new Error("You cannot instantiate \"Logger\". Use the \"getLogger\" API instead.");
Expand All @@ -121,32 +118,27 @@ System.register([], function (_export) {
debug: {
value: function debug() {},
writable: true,
enumerable: true,
configurable: true
},
info: {
value: function info() {},
writable: true,
enumerable: true,
configurable: true
},
warn: {
value: function warn() {},
writable: true,
enumerable: true,
configurable: true
},
error: {
value: function error() {},
writable: true,
enumerable: true,
configurable: true
}
});

return Logger;
})();
_export("Logger", Logger);
})());
}
};
});
8 changes: 8 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### 0.2.3 (2015-02-18)


#### Bug Fixes

* **build:** add missing bower bump ([0a682c5e](http://github.com/aurelia/logging/commit/0a682c5e50345a93f242463f16416feb9a6950ed))


### 0.2.2 (2015-01-22)

* Added preliminary API docs.
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-logging",
"version": "0.2.2",
"version": "0.2.3",
"description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit c8272b9

Please sign in to comment.