@libp2p/daemon-protocol 7.0.2 → 7.0.3

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +91 -6
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # @libp2p/daemon-protocol
2
+
1
3
  [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
2
4
  [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
3
5
  [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
@@ -19,8 +21,8 @@ $ npm i @libp2p/daemon-protocol
19
21
 
20
22
  Licensed under either of
21
23
 
22
- - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
23
- - MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
24
+ - Apache 2.0, ([LICENSE-APACHE](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-protocol/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
25
+ - MIT ([LICENSE-MIT](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-protocol/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
24
26
 
25
27
  # Contribution
26
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/daemon-protocol",
3
- "version": "7.0.2",
3
+ "version": "7.0.3",
4
4
  "description": "Communication protocol between libp2p daemons and clients",
5
5
  "author": "",
6
6
  "license": "Apache-2.0 OR MIT",
@@ -61,6 +61,91 @@
61
61
  "sourceType": "module"
62
62
  }
63
63
  },
64
+ "release": {
65
+ "branches": [
66
+ "main"
67
+ ],
68
+ "plugins": [
69
+ [
70
+ "@semantic-release/commit-analyzer",
71
+ {
72
+ "preset": "conventionalcommits",
73
+ "releaseRules": [
74
+ {
75
+ "breaking": true,
76
+ "release": "major"
77
+ },
78
+ {
79
+ "revert": true,
80
+ "release": "patch"
81
+ },
82
+ {
83
+ "type": "feat",
84
+ "release": "minor"
85
+ },
86
+ {
87
+ "type": "fix",
88
+ "release": "patch"
89
+ },
90
+ {
91
+ "type": "docs",
92
+ "release": "patch"
93
+ },
94
+ {
95
+ "type": "test",
96
+ "release": "patch"
97
+ },
98
+ {
99
+ "type": "deps",
100
+ "release": "patch"
101
+ },
102
+ {
103
+ "scope": "no-release",
104
+ "release": false
105
+ }
106
+ ]
107
+ }
108
+ ],
109
+ [
110
+ "@semantic-release/release-notes-generator",
111
+ {
112
+ "preset": "conventionalcommits",
113
+ "presetConfig": {
114
+ "types": [
115
+ {
116
+ "type": "feat",
117
+ "section": "Features"
118
+ },
119
+ {
120
+ "type": "fix",
121
+ "section": "Bug Fixes"
122
+ },
123
+ {
124
+ "type": "chore",
125
+ "section": "Trivial Changes"
126
+ },
127
+ {
128
+ "type": "docs",
129
+ "section": "Documentation"
130
+ },
131
+ {
132
+ "type": "deps",
133
+ "section": "Dependencies"
134
+ },
135
+ {
136
+ "type": "test",
137
+ "section": "Tests"
138
+ }
139
+ ]
140
+ }
141
+ }
142
+ ],
143
+ "@semantic-release/changelog",
144
+ "@semantic-release/npm",
145
+ "@semantic-release/github",
146
+ "@semantic-release/git"
147
+ ]
148
+ },
64
149
  "scripts": {
65
150
  "clean": "aegir clean",
66
151
  "lint": "aegir lint",
@@ -70,14 +155,14 @@
70
155
  "release": "aegir release"
71
156
  },
72
157
  "dependencies": {
73
- "@libp2p/interface": "^2.0.0",
74
- "@libp2p/logger": "^5.0.0",
75
- "it-length-prefixed-stream": "^1.1.6",
76
- "protons-runtime": "^5.4.0",
158
+ "@libp2p/interface": "^2.2.0",
159
+ "@libp2p/logger": "^5.1.3",
160
+ "it-length-prefixed-stream": "^1.2.0",
161
+ "protons-runtime": "^5.5.0",
77
162
  "uint8arraylist": "^2.4.8"
78
163
  },
79
164
  "devDependencies": {
80
165
  "aegir": "^45.0.1",
81
- "protons": "^7.5.0"
166
+ "protons": "^7.6.0"
82
167
  }
83
168
  }