@libp2p/tcp 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -3
- package/package.json +82 -24
package/CHANGELOG.md
CHANGED
|
@@ -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
|
+
|
|
1
8
|
## [0.17.2](https://github.com/libp2p/js-libp2p-tcp/compare/v0.17.1...v0.17.2) (2021-09-03)
|
|
2
9
|
|
|
3
10
|
|
|
@@ -448,6 +455,3 @@
|
|
|
448
455
|
|
|
449
456
|
<a name="0.1.0"></a>
|
|
450
457
|
# 0.1.0 (2015-09-16)
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@libp2p/tcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Node.js implementation of the TCP module that libp2p uses, which implements the interface-connection and interface-transport interfaces",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -60,27 +60,85 @@
|
|
|
60
60
|
"err-code": "^3.0.1",
|
|
61
61
|
"stream-to-it": "^0.2.2"
|
|
62
62
|
},
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
"
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
63
|
+
"release": {
|
|
64
|
+
"branches": [
|
|
65
|
+
"master"
|
|
66
|
+
],
|
|
67
|
+
"plugins": [
|
|
68
|
+
[
|
|
69
|
+
"@semantic-release/commit-analyzer",
|
|
70
|
+
{
|
|
71
|
+
"preset": "conventionalcommits",
|
|
72
|
+
"releaseRules": [
|
|
73
|
+
{
|
|
74
|
+
"breaking": true,
|
|
75
|
+
"release": "major"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"revert": true,
|
|
79
|
+
"release": "patch"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"type": "feat",
|
|
83
|
+
"release": "minor"
|
|
84
|
+
},
|
|
85
|
+
{
|
|
86
|
+
"type": "fix",
|
|
87
|
+
"release": "patch"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"type": "chore",
|
|
91
|
+
"release": "patch"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"type": "docs",
|
|
95
|
+
"release": "patch"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"type": "test",
|
|
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
|
+
]
|
|
135
|
+
}
|
|
136
|
+
}
|
|
137
|
+
],
|
|
138
|
+
"@semantic-release/changelog",
|
|
139
|
+
"@semantic-release/npm",
|
|
140
|
+
"@semantic-release/github",
|
|
141
|
+
"@semantic-release/git"
|
|
142
|
+
]
|
|
143
|
+
}
|
|
86
144
|
}
|