Skip to content

Commit

Permalink
chore(release): 10.1.2 [skip ci]
Browse files Browse the repository at this point in the history
### [10.1.2](v10.1.1...v10.1.2) (2022-01-08)

### Trivial Changes

* add semantic release config ([#220](#220)) ([e8a691e](e8a691e))
* update build ([#218](#218)) ([c04f330](c04f330))
  • Loading branch information
semantic-release-bot committed Jan 8, 2022
1 parent e8a691e commit 8eb452a
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 47 deletions.
11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
### [10.1.2](https://github.com/multiformats/js-multiaddr/compare/v10.1.1...v10.1.2) (2022-01-08)


### Trivial Changes

* add semantic release config ([#220](https://github.com/multiformats/js-multiaddr/issues/220)) ([e8a691e](https://github.com/multiformats/js-multiaddr/commit/e8a691e29a572e0e74b9ef3fa11340cbee18cb3f))
* update build ([#218](https://github.com/multiformats/js-multiaddr/issues/218)) ([c04f330](https://github.com/multiformats/js-multiaddr/commit/c04f3302c3d82c35e251302342996f2fb3648fa8))

## [10.0.1](https://github.com/multiformats/js-multiaddr/compare/v10.0.0...v10.0.1) (2021-08-19)


Expand Down Expand Up @@ -540,6 +548,3 @@ please see https://github.com/multiformats/multicodec/pull/16.

<a name="1.1.0"></a>
# 1.1.0 (2015-11-06)



105 changes: 61 additions & 44 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@multiformats/multiaddr",
"version": "10.0.1",
"version": "10.1.2",
"description": "multiaddr implementation (binary + string representation of network addresses)",
"type": "module",
"types": "./dist/src/index.d.ts",
Expand Down Expand Up @@ -67,55 +67,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 8eb452a

Please sign in to comment.