libp2p 3.0.1 → 3.0.2

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.
@@ -155,8 +155,8 @@ export type Libp2pOptions<T extends ServiceMap = ServiceMap> = Libp2pInit<T> & {
155
155
  * import { createLibp2p } from 'libp2p'
156
156
  * import { tcp } from '@libp2p/tcp'
157
157
  * import { mplex } from '@libp2p/mplex'
158
- * import { noise } from '@libp2p/noise'
159
- * import { yamux } from '@libp2p/yamux'
158
+ * import { noise } from '@chainsafe/libp2p-noise'
159
+ * import { yamux } from '@chainsafe/libp2p-yamux'
160
160
  *
161
161
  * // specify options
162
162
  * const options = {
package/dist/src/index.js CHANGED
@@ -30,8 +30,8 @@ export { dnsaddrResolver } from "./connection-manager/resolvers/index.js";
30
30
  * import { createLibp2p } from 'libp2p'
31
31
  * import { tcp } from '@libp2p/tcp'
32
32
  * import { mplex } from '@libp2p/mplex'
33
- * import { noise } from '@libp2p/noise'
34
- * import { yamux } from '@libp2p/yamux'
33
+ * import { noise } from '@chainsafe/libp2p-noise'
34
+ * import { yamux } from '@chainsafe/libp2p-yamux'
35
35
  *
36
36
  * // specify options
37
37
  * const options = {
@@ -1,3 +1,3 @@
1
- export declare const version = "3.0.1";
1
+ export declare const version = "3.0.2";
2
2
  export declare const name = "js-libp2p";
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1,3 +1,3 @@
1
- export const version = '3.0.1';
1
+ export const version = '3.0.2';
2
2
  export const name = 'js-libp2p';
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "libp2p",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "description": "JavaScript implementation of libp2p, a modular peer to peer network stack",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/libp2p#readme",
package/src/index.ts CHANGED
@@ -184,8 +184,8 @@ export type Libp2pOptions<T extends ServiceMap = ServiceMap> = Libp2pInit<T> & {
184
184
  * import { createLibp2p } from 'libp2p'
185
185
  * import { tcp } from '@libp2p/tcp'
186
186
  * import { mplex } from '@libp2p/mplex'
187
- * import { noise } from '@libp2p/noise'
188
- * import { yamux } from '@libp2p/yamux'
187
+ * import { noise } from '@chainsafe/libp2p-noise'
188
+ * import { yamux } from '@chainsafe/libp2p-yamux'
189
189
  *
190
190
  * // specify options
191
191
  * const options = {
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
- export const version = '3.0.1'
1
+ export const version = '3.0.2'
2
2
  export const name = 'js-libp2p'