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

Commit

Permalink
chore(release): 1.0.2 [skip ci]
Browse files Browse the repository at this point in the history
## [@libp2p/topology-v1.0.2](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/topology-v1.0.1...@libp2p/topology-v1.0.2) (2022-01-08)

### Trivial Changes

* add semantic release config ([#141](#141)) ([5f0de59](5f0de59))
* update package versions ([#140](#140)) ([cd844f6](cd844f6))
  • Loading branch information
semantic-release-bot committed Jan 8, 2022
1 parent fe6f470 commit 2df0143
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 44 deletions.
8 changes: 8 additions & 0 deletions packages/libp2p-topology/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [@libp2p/topology-v1.0.2](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/topology-v1.0.1...@libp2p/topology-v1.0.2) (2022-01-08)


### Trivial Changes

* add semantic release config ([#141](https://github.com/libp2p/js-libp2p-interfaces/issues/141)) ([5f0de59](https://github.com/libp2p/js-libp2p-interfaces/commit/5f0de59136b6343d2411abb2d6a4dd2cd0b7efe4))
* update package versions ([#140](https://github.com/libp2p/js-libp2p-interfaces/issues/140)) ([cd844f6](https://github.com/libp2p/js-libp2p-interfaces/commit/cd844f6e39f4ee50d006e86eac8dadf696900eb5))

# Change Log

All notable changes to this project will be documented in this file.
Expand Down
105 changes: 61 additions & 44 deletions packages/libp2p-topology/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@libp2p/topology",
"version": "1.0.0",
"version": "1.0.2",
"description": "libp2p network topology",
"type": "module",
"files": [
Expand Down Expand Up @@ -61,55 +61,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 2df0143

Please sign in to comment.