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

Commit 819e157

Browse files
chore(release): 1.0.1 [skip ci]
### [1.0.1](v1.0.0...v1.0.1) (2022-01-08) ### Trivial Changes * add semantic release config ([#155](#155)) ([def9ad7](def9ad7))
1 parent def9ad7 commit 819e157

File tree

2 files changed

+68
-47
lines changed

2 files changed

+68
-47
lines changed

CHANGELOG.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
### [1.0.1](https://github.com/libp2p/js-libp2p-tcp/compare/v1.0.0...v1.0.1) (2022-01-08)
2+
3+
4+
### Trivial Changes
5+
6+
* add semantic release config ([#155](https://github.com/libp2p/js-libp2p-tcp/issues/155)) ([def9ad7](https://github.com/libp2p/js-libp2p-tcp/commit/def9ad759d39da21639358b06bd847ab30b3cb7b))
7+
18
## [0.17.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.17.1...v0.17.2) (2021-09-03)
29

310

@@ -448,6 +455,3 @@
448455

449456
<a name="0.1.0"></a>
450457
# 0.1.0 (2015-09-16)
451-
452-
453-

package.json

+61-44
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@libp2p/tcp",
3-
"version": "0.0.1",
3+
"version": "1.0.1",
44
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces",
55
"main": "./dist/src/index.js",
66
"type": "module",
@@ -66,55 +66,72 @@
6666
],
6767
"plugins": [
6868
[
69-
"@semantic-release/commit-analyzer", {
69+
"@semantic-release/commit-analyzer",
70+
{
7071
"preset": "conventionalcommits",
71-
"releaseRules": [{
72-
"breaking": true,
73-
"release": "major"
74-
}, {
75-
"revert": true,
76-
"release": "patch"
77-
}, {
78-
"type": "feat",
79-
"release": "minor"
80-
}, {
81-
"type": "fix",
82-
"release": "patch"
83-
}, {
84-
"type": "chore",
85-
"release": "patch"
86-
}, {
87-
"type": "docs",
88-
"release": "patch"
89-
}, {
90-
"type": "test",
91-
"release": "patch"
92-
}, {
93-
"scope": "no-release",
94-
"release": false
95-
}]
96-
}
97-
],
98-
[
99-
"@semantic-release/release-notes-generator", {
100-
"preset": "conventionalcommits",
101-
"presetConfig": {
102-
"types": [{
72+
"releaseRules": [
73+
{
74+
"breaking": true,
75+
"release": "major"
76+
},
77+
{
78+
"revert": true,
79+
"release": "patch"
80+
},
81+
{
10382
"type": "feat",
104-
"section": "Features"
105-
}, {
83+
"release": "minor"
84+
},
85+
{
10686
"type": "fix",
107-
"section": "Bug Fixes"
108-
}, {
87+
"release": "patch"
88+
},
89+
{
10990
"type": "chore",
110-
"section": "Trivial Changes"
111-
}, {
91+
"release": "patch"
92+
},
93+
{
11294
"type": "docs",
113-
"section": "Trivial Changes"
114-
}, {
95+
"release": "patch"
96+
},
97+
{
11598
"type": "test",
116-
"section": "Tests"
117-
}]
99+
"release": "patch"
100+
},
101+
{
102+
"scope": "no-release",
103+
"release": false
104+
}
105+
]
106+
}
107+
],
108+
[
109+
"@semantic-release/release-notes-generator",
110+
{
111+
"preset": "conventionalcommits",
112+
"presetConfig": {
113+
"types": [
114+
{
115+
"type": "feat",
116+
"section": "Features"
117+
},
118+
{
119+
"type": "fix",
120+
"section": "Bug Fixes"
121+
},
122+
{
123+
"type": "chore",
124+
"section": "Trivial Changes"
125+
},
126+
{
127+
"type": "docs",
128+
"section": "Trivial Changes"
129+
},
130+
{
131+
"type": "test",
132+
"section": "Tests"
133+
}
134+
]
118135
}
119136
}
120137
],

0 commit comments

Comments
 (0)