Skip to content

Commit

Permalink
chore(release): 6.0.0 [skip ci]
Browse files Browse the repository at this point in the history
# [6.0.0](v5.0.0...v6.0.0) (2022-01-06)

### Bug Fixes

* missing configuration for logs ([35c056c](35c056c))
* module interface exports ([3667122](3667122))
* redundant class interface ([e0b76bb](e0b76bb))
* redundant interface prefix ([d234b3d](d234b3d))

### BREAKING CHANGES

* Logs are disabled by default now.
You can enable them by adding `logs: { enabled: true }` or `logs: { useNodeEnv: true }`
* Interfaces have same name now as classes, e.g. `IConfig` was changed to `Config`
* Interfaces are not exported anymore.
It is necessary to use class as a type directly, e.g. `Klarna` instead of `IKlarnaInstance`
  • Loading branch information
semantic-release-bot committed Jan 6, 2022
1 parent df27ffe commit 51356ad
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# [6.0.0](https://github.com/CrystallizeAPI/node-klarna/compare/v5.0.0...v6.0.0) (2022-01-06)


### Bug Fixes

* missing configuration for logs ([35c056c](https://github.com/CrystallizeAPI/node-klarna/commit/35c056ceb43cfb92de0db5cae6db01219329bf03))
* module interface exports ([3667122](https://github.com/CrystallizeAPI/node-klarna/commit/3667122ab26dc61484307ee165afc1b025577a58))
* redundant class interface ([e0b76bb](https://github.com/CrystallizeAPI/node-klarna/commit/e0b76bb557192346f4abe95bd2e580daf83c106d))
* redundant interface prefix ([d234b3d](https://github.com/CrystallizeAPI/node-klarna/commit/d234b3d12c21679518da7d806fcfacfdb97ee675))


### BREAKING CHANGES

* Logs are disabled by default now.
You can enable them by adding `logs: { enabled: true }` or `logs: { useNodeEnv: true }`
* Interfaces have same name now as classes, e.g. `IConfig` was changed to `Config`
* Interfaces are not exported anymore.
It is necessary to use class as a type directly, e.g. `Klarna` instead of `IKlarnaInstance`

# [5.0.0](https://github.com/CrystallizeAPI/node-klarna/compare/v4.9.1...v5.0.0) (2022-01-05)


Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "5.0.0",
"version": "6.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
Expand Down

0 comments on commit 51356ad

Please sign in to comment.