Skip to content

Commit a1840a7

Browse files
committed
version
1 parent 3a899c1 commit a1840a7

3 files changed

Lines changed: 6 additions & 14 deletions

File tree

‎src/types.ts‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ export type DBElements =
88
| Array<DBElements>;
99

1010
export type PutEntryValue = {
11-
value: DagCborEncodable,
12-
after?: string,
13-
}
11+
value: DagCborEncodable;
12+
after?: string;
13+
};

‎src/version.ts‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// Generated by genversion.
2-
export const version = "1.3.5";
2+
export const version = "1.4.0";

‎test/config.ts‎

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,7 @@ const Libp2pOptions = {
1818
addresses: {
1919
listen: ["/ip4/0.0.0.0/tcp/0/ws", "/p2p-circuit"],
2020
},
21-
transports: [
22-
webSockets(),
23-
webRTC(),
24-
circuitRelayTransport(),
25-
],
21+
transports: [webSockets(), webRTC(), circuitRelayTransport()],
2622
connectionEncryption: [noise()],
2723
streamMuxers: [yamux()],
2824
connectionGater: {
@@ -41,11 +37,7 @@ const Libp2pBrowserOptions = {
4137
addresses: {
4238
listen: ["/webrtc"],
4339
},
44-
transports: [
45-
webSockets(),
46-
webRTC(),
47-
circuitRelayTransport(),
48-
],
40+
transports: [webSockets(), webRTC(), circuitRelayTransport()],
4941
connectionEncryption: [noise()],
5042
streamMuxers: [yamux()],
5143
connectionGater: {

0 commit comments

Comments
 (0)