Skip to content

Commit

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

var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } };

exports.__esModule = true;
exports.AggregateError = AggregateError;
exports.getLogger = getLogger;
exports.addAppender = addAppender;
exports.setLevel = setLevel;

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }

function AggregateError(msg, inner, skipIfAlreadyAggregate) {
if (inner) {
if (inner.innerError && skipIfAlreadyAggregate) {
Expand Down
4 changes: 2 additions & 2 deletions dist/commonjs/index.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
'use strict';

var _classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } };

exports.__esModule = true;
exports.AggregateError = AggregateError;
exports.getLogger = getLogger;
exports.addAppender = addAppender;
exports.setLevel = setLevel;

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }

function AggregateError(msg, inner, skipIfAlreadyAggregate) {
if (inner) {
if (inner.innerError && skipIfAlreadyAggregate) {
Expand Down
10 changes: 5 additions & 5 deletions dist/system/index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
System.register([], function (_export) {
var _classCallCheck, logLevel, loggers, currentLevel, appenders, slice, loggerConstructionKey, Logger;
'use strict';

var logLevel, loggers, currentLevel, appenders, slice, loggerConstructionKey, Logger;

_export('AggregateError', AggregateError);

Expand All @@ -9,6 +11,8 @@ System.register([], function (_export) {

_export('setLevel', setLevel);

function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }

function AggregateError(msg, inner, skipIfAlreadyAggregate) {
if (inner) {
if (inner.innerError && skipIfAlreadyAggregate) {
Expand Down Expand Up @@ -111,10 +115,6 @@ System.register([], function (_export) {
return {
setters: [],
execute: function () {
'use strict';

_classCallCheck = function (instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } };

logLevel = {
none: 0,
error: 1,
Expand Down
3 changes: 3 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 0.5.0 (2015-06-08)


## 0.4.0 (2015-04-30)


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.4.0",
"version": "0.5.0",
"description": "A minimal but effective logging mechanism with support for log levels and pluggable log appenders.",
"keywords": [
"aurelia",
Expand Down

0 comments on commit 985c908

Please sign in to comment.