chore: release master (#1376)

This commit is contained in:
fryorcraken.eth 2023-06-02 05:50:52 +10:00 committed by GitHub
parent be5dde787b
commit 24811e4ffc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
24 changed files with 188 additions and 52 deletions

View File

@ -1,13 +1,13 @@
{ {
"packages/utils": "0.0.6", "packages/utils": "0.0.7",
"packages/proto": "0.0.4", "packages/proto": "0.0.5",
"packages/interfaces": "0.0.13", "packages/interfaces": "0.0.14",
"packages/message-hash": "0.1.2", "packages/message-hash": "0.1.3",
"packages/enr": "0.0.12", "packages/enr": "0.0.13",
"packages/peer-exchange": "0.0.11", "packages/peer-exchange": "0.0.12",
"packages/core": "0.0.18", "packages/core": "0.0.19",
"packages/dns-discovery": "0.0.12", "packages/dns-discovery": "0.0.13",
"packages/message-encryption": "0.0.16", "packages/message-encryption": "0.0.17",
"packages/create": "0.0.14", "packages/create": "0.0.15",
"packages/relay": "0.0.1" "packages/relay": "0.0.2"
} }

View File

@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification, The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.0.19](https://github.com/waku-org/js-waku/compare/core-v0.0.18...core-v0.0.19) (2023-05-26)
### ⚠ BREAKING CHANGES
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
### Features
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/interfaces bumped from 0.0.13 to 0.0.14
* @waku/proto bumped from * to 0.0.5
* @waku/utils bumped from 0.0.6 to 0.0.7
## [0.0.18](https://github.com/waku-org/js-waku/compare/core-v0.0.17...core-v0.0.18) (2023-05-18) ## [0.0.18](https://github.com/waku-org/js-waku/compare/core-v0.0.17...core-v0.0.18) (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/core", "name": "@waku/core",
"version": "0.0.18", "version": "0.0.19",
"description": "TypeScript implementation of the Waku v2 protocol", "description": "TypeScript implementation of the Waku v2 protocol",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -73,9 +73,9 @@
}, },
"dependencies": { "dependencies": {
"@noble/hashes": "^1.3.0", "@noble/hashes": "^1.3.0",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"@waku/proto": "*", "@waku/proto": "0.0.5",
"@waku/utils": "0.0.6", "@waku/utils": "0.0.7",
"debug": "^4.3.4", "debug": "^4.3.4",
"it-all": "^3.0.1", "it-all": "^3.0.1",
"it-length-prefixed": "^9.0.1", "it-length-prefixed": "^9.0.1",

View File

@ -26,6 +26,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* devDependencies * devDependencies
* @waku/interfaces bumped from 0.0.11 to 0.0.12 * @waku/interfaces bumped from 0.0.11 to 0.0.12
## [0.0.15](https://github.com/waku-org/js-waku/compare/create-v0.0.14...create-v0.0.15) (2023-05-26)
### ⚠ BREAKING CHANGES
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
### Features
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/relay bumped from 0.0.1 to 0.0.2
* @waku/core bumped from 0.0.18 to 0.0.19
* @waku/dns-discovery bumped from 0.0.12 to 0.0.13
* devDependencies
* @waku/interfaces bumped from 0.0.13 to 0.0.14
## [0.0.14](https://github.com/waku-org/js-waku/compare/create-v0.0.13...create-v0.0.14) (2023-05-18) ## [0.0.14](https://github.com/waku-org/js-waku/compare/create-v0.0.13...create-v0.0.14) (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/create", "name": "@waku/create",
"version": "0.0.14", "version": "0.0.15",
"description": "Easily create a Waku node", "description": "Easily create a Waku node",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -51,9 +51,9 @@
"@chainsafe/libp2p-noise": "^11.0.0", "@chainsafe/libp2p-noise": "^11.0.0",
"@libp2p/mplex": "^7.1.1", "@libp2p/mplex": "^7.1.1",
"@libp2p/websockets": "^5.0.3", "@libp2p/websockets": "^5.0.3",
"@waku/relay": "0.0.1", "@waku/relay": "0.0.2",
"@waku/core": "0.0.18", "@waku/core": "0.0.19",
"@waku/dns-discovery": "0.0.12", "@waku/dns-discovery": "0.0.13",
"libp2p": "^0.42.2" "libp2p": "^0.42.2"
}, },
"devDependencies": { "devDependencies": {
@ -77,7 +77,7 @@
"@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.51.0", "@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*", "@waku/build-utils": "*",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"cspell": "^6.31.1", "cspell": "^6.31.1",
"eslint": "^8.35.0", "eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0", "eslint-config-prettier": "^8.6.0",

View File

@ -37,6 +37,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* devDependencies * devDependencies
* @waku/interfaces bumped from 0.0.11 to 0.0.12 * @waku/interfaces bumped from 0.0.11 to 0.0.12
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from 0.0.12 to 0.0.13
* @waku/utils bumped from 0.0.6 to 0.0.7
* devDependencies
* @waku/interfaces bumped from 0.0.13 to 0.0.14
## [0.0.12](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.11...dns-discovery-v0.0.12) (2023-05-18) ## [0.0.12](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.11...dns-discovery-v0.0.12) (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/dns-discovery", "name": "@waku/dns-discovery",
"version": "0.0.12", "version": "0.0.13",
"description": "DNS Peer Discovery (EIP-1459)", "description": "DNS Peer Discovery (EIP-1459)",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -53,8 +53,8 @@
"dependencies": { "dependencies": {
"@libp2p/interface-peer-discovery": "^1.0.5", "@libp2p/interface-peer-discovery": "^1.0.5",
"@libp2p/interfaces": "^3.3.1", "@libp2p/interfaces": "^3.3.1",
"@waku/enr": "0.0.12", "@waku/enr": "0.0.13",
"@waku/utils": "0.0.6", "@waku/utils": "0.0.7",
"debug": "^4.3.4", "debug": "^4.3.4",
"dns-query": "^0.11.2", "dns-query": "^0.11.2",
"hi-base32": "^0.5.1", "hi-base32": "^0.5.1",
@ -73,7 +73,7 @@
"@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.51.0", "@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*", "@waku/build-utils": "*",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"chai": "^4.3.7", "chai": "^4.3.7",
"cspell": "^6.31.1", "cspell": "^6.31.1",
"eslint": "^8.35.0", "eslint": "^8.35.0",

View File

@ -35,6 +35,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* devDependencies * devDependencies
* @waku/interfaces bumped from 0.0.11 to 0.0.12 * @waku/interfaces bumped from 0.0.11 to 0.0.12
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.6 to 0.0.7
* devDependencies
* @waku/interfaces bumped from 0.0.13 to 0.0.14
## [0.0.12](https://github.com/waku-org/js-waku/compare/enr-v0.0.11...enr-v0.0.12) (2023-05-18) ## [0.0.12](https://github.com/waku-org/js-waku/compare/enr-v0.0.11...enr-v0.0.12) (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/enr", "name": "@waku/enr",
"version": "0.0.12", "version": "0.0.13",
"description": "ENR (EIP-778) for Waku", "description": "ENR (EIP-778) for Waku",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -56,7 +56,7 @@
"@libp2p/peer-id": "^2.0.3", "@libp2p/peer-id": "^2.0.3",
"@multiformats/multiaddr": "^12.0.0", "@multiformats/multiaddr": "^12.0.0",
"@noble/secp256k1": "^1.7.1", "@noble/secp256k1": "^1.7.1",
"@waku/utils": "0.0.6", "@waku/utils": "0.0.7",
"debug": "^4.3.4", "debug": "^4.3.4",
"js-sha3": "^0.8.0" "js-sha3": "^0.8.0"
}, },
@ -72,7 +72,7 @@
"@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.51.0", "@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*", "@waku/build-utils": "*",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"chai": "^4.3.7", "chai": "^4.3.7",
"cspell": "^6.31.1", "cspell": "^6.31.1",
"eslint": "^8.35.0", "eslint": "^8.35.0",

View File

@ -5,6 +5,17 @@ All notable changes to this project will be documented in this file.
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification, The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [0.0.14](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.13...interfaces-v0.0.14) (2023-05-26)
### ⚠ BREAKING CHANGES
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
### Features
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
## [0.0.13](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.12...interfaces-v0.0.13) (2023-05-18) ## [0.0.13](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.12...interfaces-v0.0.13) (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/interfaces", "name": "@waku/interfaces",
"version": "0.0.13", "version": "0.0.14",
"description": "Definition of Waku interfaces", "description": "Definition of Waku interfaces",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",

View File

@ -35,6 +35,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* @waku/interfaces bumped from 0.0.10 to 0.0.11 * @waku/interfaces bumped from 0.0.10 to 0.0.11
* @waku/utils bumped from 0.0.3 to 0.0.4 * @waku/utils bumped from 0.0.3 to 0.0.4
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.18 to 0.0.19
* @waku/interfaces bumped from 0.0.13 to 0.0.14
* @waku/proto bumped from * to 0.0.5
* @waku/utils bumped from 0.0.6 to 0.0.7
## [0.0.16](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.15...message-encryption-v0.0.16) (2023-05-18) ## [0.0.16](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.15...message-encryption-v0.0.16) (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/message-encryption", "name": "@waku/message-encryption",
"version": "0.0.16", "version": "0.0.17",
"description": "Waku Message Payload Encryption", "description": "Waku Message Payload Encryption",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -72,10 +72,10 @@
}, },
"dependencies": { "dependencies": {
"@noble/secp256k1": "^1.7.1", "@noble/secp256k1": "^1.7.1",
"@waku/core": "0.0.18", "@waku/core": "0.0.19",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"@waku/proto": "*", "@waku/proto": "0.0.5",
"@waku/utils": "0.0.6", "@waku/utils": "0.0.7",
"debug": "^4.3.4", "debug": "^4.3.4",
"js-sha3": "^0.8.0" "js-sha3": "^0.8.0"
}, },

View File

@ -1,5 +1,13 @@
# Changelog # Changelog
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/utils bumped from 0.0.6 to 0.0.7
* devDependencies
* @waku/interfaces bumped from 0.0.13 to 0.0.14
## [0.1.2](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.1...message-hash-v0.1.2) (2023-05-18) ## [0.1.2](https://github.com/waku-org/js-waku/compare/message-hash-v0.1.1...message-hash-v0.1.2) (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/message-hash", "name": "@waku/message-hash",
"version": "0.1.2", "version": "0.1.3",
"description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE", "description": "TypeScript implementation of the Deterministic Message Hashing as specified in 14/WAKU2-MESSAGE",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -53,7 +53,7 @@
}, },
"dependencies": { "dependencies": {
"@noble/hashes": "^1.2.0", "@noble/hashes": "^1.2.0",
"@waku/utils": "0.0.6" "@waku/utils": "0.0.7"
}, },
"devDependencies": { "devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-commonjs": "^24.0.1",
@ -65,7 +65,7 @@
"@typescript-eslint/eslint-plugin": "^5.54.1", "@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.51.0", "@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*", "@waku/build-utils": "*",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"chai": "^4.3.7", "chai": "^4.3.7",
"cspell": "^6.28.0", "cspell": "^6.28.0",
"eslint": "^8.35.0", "eslint": "^8.35.0",

View File

@ -43,6 +43,17 @@
* devDependencies * devDependencies
* @waku/interfaces bumped from 0.0.11 to 0.0.12 * @waku/interfaces bumped from 0.0.11 to 0.0.12
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.18 to 0.0.19
* @waku/enr bumped from 0.0.12 to 0.0.13
* @waku/proto bumped from * to 0.0.5
* @waku/utils bumped from 0.0.6 to 0.0.7
* devDependencies
* @waku/interfaces bumped from 0.0.13 to 0.0.14
## [0.0.11](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.10...peer-exchange-v0.0.11) (2023-05-18) ## [0.0.11](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.10...peer-exchange-v0.0.11) (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/peer-exchange", "name": "@waku/peer-exchange",
"version": "0.0.11", "version": "0.0.12",
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku", "description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -50,10 +50,10 @@
"dependencies": { "dependencies": {
"@libp2p/interface-peer-discovery": "^1.0.5", "@libp2p/interface-peer-discovery": "^1.0.5",
"@libp2p/interfaces": "^3.3.1", "@libp2p/interfaces": "^3.3.1",
"@waku/core": "0.0.18", "@waku/core": "0.0.19",
"@waku/enr": "0.0.12", "@waku/enr": "0.0.13",
"@waku/proto": "*", "@waku/proto": "0.0.5",
"@waku/utils": "0.0.6", "@waku/utils": "0.0.7",
"debug": "^4.3.4", "debug": "^4.3.4",
"it-all": "^3.0.1", "it-all": "^3.0.1",
"it-length-prefixed": "^9.0.1", "it-length-prefixed": "^9.0.1",
@ -71,7 +71,7 @@
"@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.51.0", "@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*", "@waku/build-utils": "*",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"chai": "^4.3.7", "chai": "^4.3.7",
"cspell": "^6.31.1", "cspell": "^6.31.1",
"eslint": "^8.35.0", "eslint": "^8.35.0",

View File

@ -1,5 +1,16 @@
# Changelog # Changelog
## [0.0.5](https://github.com/waku-org/js-waku/compare/proto-v0.0.4...proto-v0.0.5) (2023-05-26)
### ⚠ BREAKING CHANGES
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
### Features
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
## [0.0.4](https://github.com/waku-org/js-waku/compare/proto-v0.0.3...proto-v0.0.4) (2023-03-24) ## [0.0.4](https://github.com/waku-org/js-waku/compare/proto-v0.0.3...proto-v0.0.4) (2023-03-24)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/proto", "name": "@waku/proto",
"version": "0.0.4", "version": "0.0.5",
"description": "Protobuf definitions for Waku", "description": "Protobuf definitions for Waku",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",

View File

@ -1,5 +1,14 @@
# Changelog # Changelog
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/core bumped from 0.0.18 to 0.0.19
* @waku/interfaces bumped from 0.0.13 to 0.0.14
* @waku/proto bumped from * to 0.0.5
* @waku/utils bumped from 0.0.6 to 0.0.7
## 0.0.1 (2023-05-18) ## 0.0.1 (2023-05-18)

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/relay", "name": "@waku/relay",
"version": "0.0.1", "version": "0.0.2",
"description": "Relay Protocol for Waku", "description": "Relay Protocol for Waku",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -51,10 +51,10 @@
"dependencies": { "dependencies": {
"@chainsafe/libp2p-gossipsub": "^6.1.0", "@chainsafe/libp2p-gossipsub": "^6.1.0",
"@noble/hashes": "^1.3.0", "@noble/hashes": "^1.3.0",
"@waku/core": "0.0.18", "@waku/core": "0.0.19",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"@waku/proto": "*", "@waku/proto": "0.0.5",
"@waku/utils": "0.0.6", "@waku/utils": "0.0.7",
"chai": "^4.3.7", "chai": "^4.3.7",
"debug": "^4.3.4", "debug": "^4.3.4",
"fast-check": "^3.8.1" "fast-check": "^3.8.1"

View File

@ -1,5 +1,23 @@
# Changelog # Changelog
## [0.0.7](https://github.com/waku-org/js-waku/compare/utils-v0.0.6...utils-v0.0.7) (2023-05-26)
### ⚠ BREAKING CHANGES
* filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332))
### Features
* Filter v2 ([#1332](https://github.com/waku-org/js-waku/issues/1332)) ([8d0e647](https://github.com/waku-org/js-waku/commit/8d0e64796695fbafad0a033552eb4412bdff3d78))
### Dependencies
* The following workspace dependencies were updated
* devDependencies
* @waku/interfaces bumped from 0.0.13 to 0.0.14
## [0.0.6](https://github.com/waku-org/js-waku/compare/utils-v0.0.5...utils-v0.0.6) (2023-05-18) ## [0.0.6](https://github.com/waku-org/js-waku/compare/utils-v0.0.5...utils-v0.0.6) (2023-05-18)

View File

@ -1,12 +1,12 @@
{ {
"name": "@waku/utils", "name": "@waku/utils",
"version": "0.0.6", "version": "0.0.7",
"lockfileVersion": 2, "lockfileVersion": 2,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "@waku/utils", "name": "@waku/utils",
"version": "0.0.6", "version": "0.0.7",
"license": "MIT OR Apache-2.0", "license": "MIT OR Apache-2.0",
"dependencies": { "dependencies": {
"debug": "^4.3.4", "debug": "^4.3.4",

View File

@ -1,6 +1,6 @@
{ {
"name": "@waku/utils", "name": "@waku/utils",
"version": "0.0.6", "version": "0.0.7",
"description": "Different utilities for Waku", "description": "Different utilities for Waku",
"types": "./dist/index.d.ts", "types": "./dist/index.d.ts",
"module": "./dist/index.js", "module": "./dist/index.js",
@ -78,7 +78,7 @@
"@typescript-eslint/eslint-plugin": "^5.57.0", "@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.51.0", "@typescript-eslint/parser": "^5.51.0",
"@waku/build-utils": "*", "@waku/build-utils": "*",
"@waku/interfaces": "0.0.13", "@waku/interfaces": "0.0.14",
"cspell": "^6.31.1", "cspell": "^6.31.1",
"eslint": "^8.35.0", "eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0", "eslint-config-prettier": "^8.6.0",