Skip to content

Commit

Permalink
Bumped v7.0.0-rc.4
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollina committed Sep 8, 2021
1 parent bd67ef9 commit f4acfbb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "pino",
"version": "7.0.0-rc.3",
"version": "7.0.0-rc.4",
"description": "super fast, all natural json logger",
"main": "pino.js",
"type": "commonjs",
Expand Down
6 changes: 3 additions & 3 deletions test/transport.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ test('pino transport options with target', async ({ teardown, same }) => {
)
const instance = pino({
transport: {
target: '#pino/file',
target: 'pino/file',
options: { destination }
}
})
Expand Down Expand Up @@ -424,8 +424,8 @@ test('pino transport options with targets', async ({ teardown, same }) => {
const instance = pino({
transport: {
targets: [
{ target: '#pino/file', options: { destination: dest1 } },
{ target: '#pino/file', options: { destination: dest2 } }
{ target: 'pino/file', options: { destination: dest1 } },
{ target: 'pino/file', options: { destination: dest2 } }
]
}
})
Expand Down

0 comments on commit f4acfbb

Please sign in to comment.