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

Commit ec50634

Browse files
chore(release): 1.0.2 [skip ci]
## [@libp2p/connection-v1.0.2](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/connection-v1.0.1...@libp2p/connection-v1.0.2) (2022-01-08) ### Trivial Changes * add semantic release config ([#141](#141)) ([5f0de59](5f0de59)) * update package versions ([#140](#140)) ([cd844f6](cd844f6))
1 parent 418c718 commit ec50634

File tree

2 files changed

+69
-44
lines changed

2 files changed

+69
-44
lines changed

packages/libp2p-connection/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## [@libp2p/connection-v1.0.2](https://github.com/libp2p/js-libp2p-interfaces/compare/@libp2p/connection-v1.0.1...@libp2p/connection-v1.0.2) (2022-01-08)
2+
3+
4+
### Trivial Changes
5+
6+
* add semantic release config ([#141](https://github.com/libp2p/js-libp2p-interfaces/issues/141)) ([5f0de59](https://github.com/libp2p/js-libp2p-interfaces/commit/5f0de59136b6343d2411abb2d6a4dd2cd0b7efe4))
7+
* update package versions ([#140](https://github.com/libp2p/js-libp2p-interfaces/issues/140)) ([cd844f6](https://github.com/libp2p/js-libp2p-interfaces/commit/cd844f6e39f4ee50d006e86eac8dadf696900eb5))
8+
19
# Change Log
210

311
All notable changes to this project will be documented in this file.

packages/libp2p-connection/package.json

+61-44
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libp2p/connection",
3-
"version": "1.0.0",
3+
"version": "1.0.2",
44
"description": "JS Libp2p connections",
55
"type": "module",
66
"files": [
@@ -73,55 +73,72 @@
7373
],
7474
"plugins": [
7575
[
76-
"@semantic-release/commit-analyzer", {
76+
"@semantic-release/commit-analyzer",
77+
{
7778
"preset": "conventionalcommits",
78-
"releaseRules": [{
79-
"breaking": true,
80-
"release": "major"
81-
}, {
82-
"revert": true,
83-
"release": "patch"
84-
}, {
85-
"type": "feat",
86-
"release": "minor"
87-
}, {
88-
"type": "fix",
89-
"release": "patch"
90-
}, {
91-
"type": "chore",
92-
"release": "patch"
93-
}, {
94-
"type": "docs",
95-
"release": "patch"
96-
}, {
97-
"type": "test",
98-
"release": "patch"
99-
}, {
100-
"scope": "no-release",
101-
"release": false
102-
}]
103-
}
104-
],
105-
[
106-
"@semantic-release/release-notes-generator", {
107-
"preset": "conventionalcommits",
108-
"presetConfig": {
109-
"types": [{
79+
"releaseRules": [
80+
{
81+
"breaking": true,
82+
"release": "major"
83+
},
84+
{
85+
"revert": true,
86+
"release": "patch"
87+
},
88+
{
11089
"type": "feat",
111-
"section": "Features"
112-
}, {
90+
"release": "minor"
91+
},
92+
{
11393
"type": "fix",
114-
"section": "Bug Fixes"
115-
}, {
94+
"release": "patch"
95+
},
96+
{
11697
"type": "chore",
117-
"section": "Trivial Changes"
118-
}, {
98+
"release": "patch"
99+
},
100+
{
119101
"type": "docs",
120-
"section": "Trivial Changes"
121-
}, {
102+
"release": "patch"
103+
},
104+
{
122105
"type": "test",
123-
"section": "Tests"
124-
}]
106+
"release": "patch"
107+
},
108+
{
109+
"scope": "no-release",
110+
"release": false
111+
}
112+
]
113+
}
114+
],
115+
[
116+
"@semantic-release/release-notes-generator",
117+
{
118+
"preset": "conventionalcommits",
119+
"presetConfig": {
120+
"types": [
121+
{
122+
"type": "feat",
123+
"section": "Features"
124+
},
125+
{
126+
"type": "fix",
127+
"section": "Bug Fixes"
128+
},
129+
{
130+
"type": "chore",
131+
"section": "Trivial Changes"
132+
},
133+
{
134+
"type": "docs",
135+
"section": "Trivial Changes"
136+
},
137+
{
138+
"type": "test",
139+
"section": "Tests"
140+
}
141+
]
125142
}
126143
}
127144
],

0 commit comments

Comments
 (0)