Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 5, 2025
1 parent d47d90e commit 021e0a4
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
18 changes: 0 additions & 18 deletions .changeset/ninety-bobcats-return.md

This file was deleted.

19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @seek/logger

## 9.1.0

### Minor Changes

- Add support for configuring custom log levels: ([#164](https://github.com/seek-oss/logger/pull/164))

```ts
import createLogger from '@seek/logger';

const logger = createLogger({
name: 'my-app',
customLevels: {
foo: 35,
},
});

logger.foo('Bar');
```

## 9.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@seek/logger",
"version": "9.0.0",
"version": "9.1.0",
"private": false,
"description": "Standardized logging",
"homepage": "https://github.com/seek-oss/logger#readme",
Expand Down Expand Up @@ -63,6 +63,6 @@
"entryPoint": "src/index.ts",
"template": null,
"type": "package",
"version": "9.0.1"
"version": "9.1.0"
}
}

0 comments on commit 021e0a4

Please sign in to comment.