Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Commit

Permalink
chore(release): 0.22.3 [skip ci]
Browse files Browse the repository at this point in the history
### [0.22.3](v0.22.2...v0.22.3) (2022-01-08)

### Trivial Changes

* add semantic release config ([#232](#232)) ([d1b9961](d1b9961))
* uncomment renderer build ([#226](#226)) ([cecad66](cecad66))
* update build ([#227](#227)) ([1642c1b](1642c1b))
* update build ([#229](#229)) ([3544d9c](3544d9c))
  • Loading branch information
semantic-release-bot committed Jan 8, 2022
1 parent d1b9961 commit da421f5
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 47 deletions.
13 changes: 10 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### [0.22.3](https://github.com/libp2p/js-libp2p-crypto/compare/v0.22.2...v0.22.3) (2022-01-08)


### Trivial Changes

* add semantic release config ([#232](https://github.com/libp2p/js-libp2p-crypto/issues/232)) ([d1b9961](https://github.com/libp2p/js-libp2p-crypto/commit/d1b99617da775ffed7a7e1a20de740338c0c6159))
* uncomment renderer build ([#226](https://github.com/libp2p/js-libp2p-crypto/issues/226)) ([cecad66](https://github.com/libp2p/js-libp2p-crypto/commit/cecad669aa7dda5e5eed178099ae0191a500e543))
* update build ([#227](https://github.com/libp2p/js-libp2p-crypto/issues/227)) ([1642c1b](https://github.com/libp2p/js-libp2p-crypto/commit/1642c1b4386a6d28ed945ffb96ce68ef8a2aed35))
* update build ([#229](https://github.com/libp2p/js-libp2p-crypto/issues/229)) ([3544d9c](https://github.com/libp2p/js-libp2p-crypto/commit/3544d9c63a7fba0b39e7cbf23bc44b4e196ad52b))

# [0.22.0](https://github.com/libp2p/js-libp2p-crypto/compare/v0.21.0...v0.22.0) (2022-01-04)


Expand Down Expand Up @@ -485,6 +495,3 @@ chore: update deps
### Features

* **keys:** implement generateKeyPairFromSeed for ed25519 ([e5b7c1f](https://github.com/libp2p/js-libp2p-crypto/commit/e5b7c1f))



105 changes: 61 additions & 44 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/crypto",
"version": "0.22.0",
"version": "0.22.3",
"description": "Crypto primitives for libp2p",
"type": "module",
"types": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -103,55 +103,72 @@
],
"plugins": [
[
"@semantic-release/commit-analyzer", {
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"releaseRules": [{
"breaking": true,
"release": "major"
}, {
"revert": true,
"release": "patch"
}, {
"type": "feat",
"release": "minor"
}, {
"type": "fix",
"release": "patch"
}, {
"type": "chore",
"release": "patch"
}, {
"type": "docs",
"release": "patch"
}, {
"type": "test",
"release": "patch"
}, {
"scope": "no-release",
"release": false
}]
}
],
[
"@semantic-release/release-notes-generator", {
"preset": "conventionalcommits",
"presetConfig": {
"types": [{
"releaseRules": [
{
"breaking": true,
"release": "major"
},
{
"revert": true,
"release": "patch"
},
{
"type": "feat",
"section": "Features"
}, {
"release": "minor"
},
{
"type": "fix",
"section": "Bug Fixes"
}, {
"release": "patch"
},
{
"type": "chore",
"section": "Trivial Changes"
}, {
"release": "patch"
},
{
"type": "docs",
"section": "Trivial Changes"
}, {
"release": "patch"
},
{
"type": "test",
"section": "Tests"
}]
"release": "patch"
},
{
"scope": "no-release",
"release": false
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"section": "Trivial Changes"
},
{
"type": "docs",
"section": "Trivial Changes"
},
{
"type": "test",
"section": "Tests"
}
]
}
}
],
Expand Down

0 comments on commit da421f5

Please sign in to comment.