Skip to content

Commit 5774832

Browse files
author
mreuvers
committed
Update change log for 2.0.1 release, make everything ready for 2.0.1 release.
1 parent 74aefef commit 5774832

File tree

10 files changed

+6186
-3964
lines changed

10 files changed

+6186
-3964
lines changed

category-style/package-lock.json

Lines changed: 2549 additions & 1514 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

category-style/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-logging-category-style",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "TypeScript Logging category style written in and to be used by TypeScript.",
55
"main": "dist/bundle/typescript-logging-category.js",
66
"module": "dist/bundle/typescript-logging-category.esm.js",
@@ -44,7 +44,7 @@
4444
},
4545
"homepage": "https://github.com/vauxite-org/typescript-logging/#readme",
4646
"peerDependencies": {
47-
"typescript-logging": "2.0.x"
47+
"typescript-logging": "~2.0.1"
4848
},
4949
"devDependencies": {
5050
"@rollup/plugin-commonjs": "21.0.1",

core/package-lock.json

Lines changed: 1070 additions & 921 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-logging",
3-
"version": "2.0.0",
3+
"version": "2.0.1",
44
"description": "TypeScript Logging core written in and to be used by TypeScript (this is the core project, you need to install a flavor too).",
55
"main": "dist/bundle/typescript-logging.js",
66
"module": "dist/bundle/typescript-logging.esm.js",

core/src/typescript/test/TestClasses.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class ArrayRawLogChannel implements RawLogChannel {
4444
return this._buffer.length;
4545
}
4646

47-
public get rawMessages() {
47+
public get rawMessages(): ReadonlyArray<RawLogMessage> {
4848
return this._buffer;
4949
}
5050

documentation/change_log.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,8 @@
22

33
This page describes the relevant changes per version since 2.0.0 release.
44

5+
* 2.0.1
6+
* Fix issue https://github.com/vauxite-org/typescript-logging/issues/93 for category style (arguments were passed incorrectly to logger)
7+
58
* 2.0.0
6-
* Official release of fully rewritten log library.
9+
* Official release of fully rewritten log library.

0 commit comments

Comments
 (0)