mirror of https://github.com/waku-org/js-waku.git
Merge pull request #1289 from waku-org/release-please--branches--master
This commit is contained in:
commit
3722ae7487
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"packages/utils": "0.0.3",
|
"packages/utils": "0.0.4",
|
||||||
"packages/proto": "0.0.4",
|
"packages/proto": "0.0.4",
|
||||||
"packages/interfaces": "0.0.10",
|
"packages/interfaces": "0.0.11",
|
||||||
"packages/enr": "0.0.9",
|
"packages/enr": "0.0.10",
|
||||||
"packages/peer-exchange": "0.0.8",
|
"packages/peer-exchange": "0.0.9",
|
||||||
"packages/core": "0.0.15",
|
"packages/core": "0.0.16",
|
||||||
"packages/dns-discovery": "0.0.9",
|
"packages/dns-discovery": "0.0.10",
|
||||||
"packages/message-encryption": "0.0.13",
|
"packages/message-encryption": "0.0.14",
|
||||||
"packages/create": "0.0.11"
|
"packages/create": "0.0.12"
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,25 @@ 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.16](https://github.com/waku-org/js-waku/compare/core-v0.0.15...core-v0.0.16) (2023-04-03)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) ([e11e5b4](https://github.com/waku-org/js-waku/commit/e11e5b4870aede7813b3ee4b60f5e625f6eac5a2))
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.10 to 0.0.11
|
||||||
|
* @waku/utils bumped from 0.0.3 to 0.0.4
|
||||||
|
|
||||||
## [0.0.15](https://github.com/waku-org/js-waku/compare/core-v0.0.14...core-v0.0.15) (2023-03-31)
|
## [0.0.15](https://github.com/waku-org/js-waku/compare/core-v0.0.14...core-v0.0.15) (2023-03-31)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/core",
|
"name": "@waku/core",
|
||||||
"version": "0.0.15",
|
"version": "0.0.16",
|
||||||
"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",
|
||||||
|
@ -82,9 +82,9 @@
|
||||||
"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/interfaces": "0.0.10",
|
"@waku/interfaces": "0.0.11",
|
||||||
"@waku/proto": "0.0.4",
|
"@waku/proto": "0.0.4",
|
||||||
"@waku/utils": "0.0.3",
|
"@waku/utils": "0.0.4",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"it-all": "^2.0.0",
|
"it-all": "^2.0.0",
|
||||||
"it-length-prefixed": "^8.0.4",
|
"it-length-prefixed": "^8.0.4",
|
||||||
|
|
|
@ -17,6 +17,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* dependencies
|
* dependencies
|
||||||
* @waku/core bumped from 0.0.14 to 0.0.15
|
* @waku/core bumped from 0.0.14 to 0.0.15
|
||||||
|
|
||||||
|
## [0.0.12](https://github.com/waku-org/js-waku/compare/create-v0.0.11...create-v0.0.12) (2023-04-03)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) ([e11e5b4](https://github.com/waku-org/js-waku/commit/e11e5b4870aede7813b3ee4b60f5e625f6eac5a2))
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/core bumped from 0.0.15 to 0.0.16
|
||||||
|
* @waku/dns-discovery bumped from 0.0.9 to 0.0.10
|
||||||
|
* devDependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.10 to 0.0.11
|
||||||
|
|
||||||
## [0.0.9](https://github.com/waku-org/js-waku/compare/create-v0.0.8...create-v0.0.9) (2023-03-24)
|
## [0.0.9](https://github.com/waku-org/js-waku/compare/create-v0.0.8...create-v0.0.9) (2023-03-24)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/create",
|
"name": "@waku/create",
|
||||||
"version": "0.0.11",
|
"version": "0.0.12",
|
||||||
"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",
|
||||||
|
@ -53,8 +53,8 @@
|
||||||
"@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/core": "0.0.15",
|
"@waku/core": "0.0.16",
|
||||||
"@waku/dns-discovery": "0.0.9",
|
"@waku/dns-discovery": "0.0.10",
|
||||||
"libp2p": "^0.42.2"
|
"libp2p": "^0.42.2"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -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.10",
|
"@waku/interfaces": "0.0.11",
|
||||||
"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",
|
||||||
|
|
|
@ -28,6 +28,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* dependencies
|
* dependencies
|
||||||
* @waku/enr bumped from 0.0.8 to 0.0.9
|
* @waku/enr bumped from 0.0.8 to 0.0.9
|
||||||
|
|
||||||
|
## [0.0.10](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.9...dns-discovery-v0.0.10) (2023-04-03)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **dns-discovery:** Use DOH list from dns-query ([1dd3210](https://github.com/waku-org/js-waku/commit/1dd32101baf2750527369f7f25981882aa1f9527))
|
||||||
|
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/enr bumped from 0.0.9 to 0.0.10
|
||||||
|
* @waku/utils bumped from 0.0.3 to 0.0.4
|
||||||
|
* devDependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.10 to 0.0.11
|
||||||
|
|
||||||
## [0.0.6](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.5...dns-discovery-v0.0.6) (2023-03-16)
|
## [0.0.6](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.5...dns-discovery-v0.0.6) (2023-03-16)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/dns-discovery",
|
"name": "@waku/dns-discovery",
|
||||||
"version": "0.0.9",
|
"version": "0.0.10",
|
||||||
"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",
|
||||||
|
@ -62,8 +62,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.9",
|
"@waku/enr": "0.0.10",
|
||||||
"@waku/utils": "0.0.3",
|
"@waku/utils": "0.0.4",
|
||||||
"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",
|
||||||
|
@ -82,7 +82,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.10",
|
"@waku/interfaces": "0.0.11",
|
||||||
"chai": "^4.3.7",
|
"chai": "^4.3.7",
|
||||||
"cspell": "^6.31.1",
|
"cspell": "^6.31.1",
|
||||||
"eslint": "^8.35.0",
|
"eslint": "^8.35.0",
|
||||||
|
|
|
@ -19,6 +19,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* devDependencies
|
* devDependencies
|
||||||
* @waku/interfaces bumped from 0.0.9 to 0.0.10
|
* @waku/interfaces bumped from 0.0.9 to 0.0.10
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/utils bumped from 0.0.3 to 0.0.4
|
||||||
|
* devDependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.10 to 0.0.11
|
||||||
|
|
||||||
## [0.0.9](https://github.com/waku-org/js-waku/compare/enr-v0.0.8...enr-v0.0.9) (2023-03-28)
|
## [0.0.9](https://github.com/waku-org/js-waku/compare/enr-v0.0.8...enr-v0.0.9) (2023-03-28)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/enr",
|
"name": "@waku/enr",
|
||||||
"version": "0.0.9",
|
"version": "0.0.10",
|
||||||
"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",
|
||||||
|
@ -58,7 +58,7 @@
|
||||||
"@libp2p/peer-id": "^2.0.2",
|
"@libp2p/peer-id": "^2.0.2",
|
||||||
"@multiformats/multiaddr": "^12.0.0",
|
"@multiformats/multiaddr": "^12.0.0",
|
||||||
"@noble/secp256k1": "^1.7.1",
|
"@noble/secp256k1": "^1.7.1",
|
||||||
"@waku/utils": "0.0.3",
|
"@waku/utils": "0.0.4",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"js-sha3": "^0.8.0"
|
"js-sha3": "^0.8.0"
|
||||||
},
|
},
|
||||||
|
@ -74,7 +74,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.10",
|
"@waku/interfaces": "0.0.11",
|
||||||
"chai": "^4.3.7",
|
"chai": "^4.3.7",
|
||||||
"cspell": "^6.31.1",
|
"cspell": "^6.31.1",
|
||||||
"eslint": "^8.35.0",
|
"eslint": "^8.35.0",
|
||||||
|
|
|
@ -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.11](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.10...interfaces-v0.0.11) (2023-04-03)
|
||||||
|
|
||||||
|
|
||||||
|
### ⚠ BREAKING CHANGES
|
||||||
|
|
||||||
|
* add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219))
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* Add and implement IReceiver ([#1219](https://github.com/waku-org/js-waku/issues/1219)) ([e11e5b4](https://github.com/waku-org/js-waku/commit/e11e5b4870aede7813b3ee4b60f5e625f6eac5a2))
|
||||||
|
|
||||||
## [0.0.10](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.9...interfaces-v0.0.10) (2023-03-24)
|
## [0.0.10](https://github.com/waku-org/js-waku/compare/interfaces-v0.0.9...interfaces-v0.0.10) (2023-03-24)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/interfaces",
|
"name": "@waku/interfaces",
|
||||||
"version": "0.0.10",
|
"version": "0.0.11",
|
||||||
"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",
|
||||||
|
|
|
@ -27,6 +27,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
* dependencies
|
* dependencies
|
||||||
* @waku/core bumped from 0.0.14 to 0.0.15
|
* @waku/core bumped from 0.0.14 to 0.0.15
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/core bumped from 0.0.15 to 0.0.16
|
||||||
|
* @waku/interfaces bumped from 0.0.10 to 0.0.11
|
||||||
|
* @waku/utils bumped from 0.0.3 to 0.0.4
|
||||||
|
|
||||||
## [0.0.10](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.9...message-encryption-v0.0.10) (2023-03-16)
|
## [0.0.10](https://github.com/waku-org/js-waku/compare/message-encryption-v0.0.9...message-encryption-v0.0.10) (2023-03-16)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/message-encryption",
|
"name": "@waku/message-encryption",
|
||||||
"version": "0.0.13",
|
"version": "0.0.14",
|
||||||
"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",
|
||||||
|
@ -74,10 +74,10 @@
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@noble/secp256k1": "^1.7.1",
|
"@noble/secp256k1": "^1.7.1",
|
||||||
"@waku/core": "0.0.15",
|
"@waku/core": "0.0.16",
|
||||||
"@waku/interfaces": "0.0.10",
|
"@waku/interfaces": "0.0.11",
|
||||||
"@waku/proto": "0.0.4",
|
"@waku/proto": "0.0.4",
|
||||||
"@waku/utils": "0.0.3",
|
"@waku/utils": "0.0.4",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"js-sha3": "^0.8.0"
|
"js-sha3": "^0.8.0"
|
||||||
},
|
},
|
||||||
|
|
|
@ -23,6 +23,16 @@
|
||||||
* dependencies
|
* dependencies
|
||||||
* @waku/core bumped from 0.0.14 to 0.0.15
|
* @waku/core bumped from 0.0.14 to 0.0.15
|
||||||
|
|
||||||
|
### Dependencies
|
||||||
|
|
||||||
|
* The following workspace dependencies were updated
|
||||||
|
* dependencies
|
||||||
|
* @waku/core bumped from 0.0.15 to 0.0.16
|
||||||
|
* @waku/enr bumped from 0.0.9 to 0.0.10
|
||||||
|
* @waku/utils bumped from 0.0.3 to 0.0.4
|
||||||
|
* devDependencies
|
||||||
|
* @waku/interfaces bumped from 0.0.10 to 0.0.11
|
||||||
|
|
||||||
## [0.0.5](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.4...peer-exchange-v0.0.5) (2023-03-23)
|
## [0.0.5](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.4...peer-exchange-v0.0.5) (2023-03-23)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/peer-exchange",
|
"name": "@waku/peer-exchange",
|
||||||
"version": "0.0.8",
|
"version": "0.0.9",
|
||||||
"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",
|
||||||
|
@ -52,10 +52,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.15",
|
"@waku/core": "0.0.16",
|
||||||
"@waku/enr": "0.0.9",
|
"@waku/enr": "0.0.10",
|
||||||
"@waku/proto": "0.0.4",
|
"@waku/proto": "0.0.4",
|
||||||
"@waku/utils": "0.0.3",
|
"@waku/utils": "0.0.4",
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
"it-all": "^2.0.0",
|
"it-all": "^2.0.0",
|
||||||
"it-length-prefixed": "^8.0.4",
|
"it-length-prefixed": "^8.0.4",
|
||||||
|
@ -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.10",
|
"@waku/interfaces": "0.0.11",
|
||||||
"chai": "^4.3.7",
|
"chai": "^4.3.7",
|
||||||
"cspell": "^6.31.1",
|
"cspell": "^6.31.1",
|
||||||
"eslint": "^8.35.0",
|
"eslint": "^8.35.0",
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [0.0.4](https://github.com/waku-org/js-waku/compare/utils-v0.0.3...utils-v0.0.4) (2023-04-03)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* **utils:** Typescript to able to find types ([03c9cac](https://github.com/waku-org/js-waku/commit/03c9cac3d0f0167dee3b99d3945d96648bdb8685))
|
||||||
|
|
||||||
## [0.0.3](https://github.com/waku-org/js-waku/compare/utils-v0.0.2...utils-v0.0.3) (2023-03-24)
|
## [0.0.3](https://github.com/waku-org/js-waku/compare/utils-v0.0.2...utils-v0.0.3) (2023-03-24)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/utils",
|
"name": "@waku/utils",
|
||||||
"version": "0.0.3",
|
"version": "0.0.4",
|
||||||
"lockfileVersion": 2,
|
"lockfileVersion": 2,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "@waku/utils",
|
"name": "@waku/utils",
|
||||||
"version": "0.0.3",
|
"version": "0.0.4",
|
||||||
"license": "MIT OR Apache-2.0",
|
"license": "MIT OR Apache-2.0",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"debug": "^4.3.4",
|
"debug": "^4.3.4",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "@waku/utils",
|
"name": "@waku/utils",
|
||||||
"version": "0.0.3",
|
"version": "0.0.4",
|
||||||
"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",
|
||||||
|
|
Loading…
Reference in New Issue