@peerbit/pubsub 1.0.6 → 1.0.7

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 +2 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Direct Sub
2
2
 
3
- Pubsub protocol built on top of [Direct Stream](./../direct-stream/README.md)
3
+ Pubsub protocol built on top of [Direct Stream](./../stream/README.md)
4
4
 
5
5
  Features
6
6
  - Accurate
@@ -24,4 +24,4 @@ Features
24
24
  ```typescript
25
25
  .publish(data, { topics: ["a","b"]})
26
26
  ```
27
- will try to find the subscribers of "a" and "b" and send messages with the shortest path in the network.
27
+ will try to find the subscribers of "a" and "b" and send messages with the shortest path in the network.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@peerbit/pubsub",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Direct streaming for libp2p",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -54,11 +54,11 @@
54
54
  "dependencies": {
55
55
  "@libp2p/interfaces": "^3.3.2",
56
56
  "@peerbit/logger": "1.0.1",
57
- "@peerbit/stream": "1.0.6",
57
+ "@peerbit/stream": "1.0.7",
58
58
  "@peerbit/uint8arrays": "3.0.1",
59
59
  "abstract-level": "^1.0.3",
60
60
  "libp2p": "^0.45.9",
61
61
  "memory-level": "^1.0.0"
62
62
  },
63
- "gitHead": "32f61ad9f3d5906e13d46f2a80f61c1826a3e817"
63
+ "gitHead": "4752c301fb49b2f937b4039533ff5bc3537da3e0"
64
64
  }