From be45358e9c63710cf6e2bf38813de62e6679136f Mon Sep 17 00:00:00 2001 From: "fryorcraken.eth" Date: Fri, 4 Nov 2022 14:54:12 +1100 Subject: [PATCH] Release 0.0.2 --- package-lock.json | 14 +++++++------- packages/byte-utils/package.json | 2 +- packages/core/CHANGELOG.md | 9 +++++++++ packages/core/package.json | 2 +- packages/create/package.json | 2 +- packages/dns-discovery/package.json | 2 +- packages/enr/package.json | 2 +- packages/interfaces/package.json | 2 +- packages/message-encryption/package.json | 2 +- 9 files changed, 23 insertions(+), 14 deletions(-) diff --git a/package-lock.json b/package-lock.json index ab40d739d2..6ac242742e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -22460,7 +22460,7 @@ }, "packages/byte-utils": { "name": "@waku/byte-utils", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT OR Apache-2.0", "dependencies": { "uint8arrays": "^4.0.2" @@ -22510,7 +22510,7 @@ }, "packages/core": { "name": "@waku/core", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT OR Apache-2.0", "dependencies": { "@chainsafe/libp2p-gossipsub": "^4.1.1", @@ -22629,7 +22629,7 @@ }, "packages/create": { "name": "@waku/create", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT OR Apache-2.0", "dependencies": { "@waku/core": "*", @@ -22659,7 +22659,7 @@ }, "packages/dns-discovery": { "name": "@waku/dns-discovery", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT OR Apache-2.0", "dependencies": { "@libp2p/interface-peer-discovery": "^1.0.0", @@ -22745,7 +22745,7 @@ }, "packages/enr": { "name": "@waku/enr", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT OR Apache-2.0", "dependencies": { "@ethersproject/rlp": "^5.5.0", @@ -22823,7 +22823,7 @@ }, "packages/interfaces": { "name": "@waku/interfaces", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT OR Apache-2.0", "dependencies": { "@chainsafe/libp2p-gossipsub": "^4.1.1", @@ -22907,7 +22907,7 @@ }, "packages/message-encryption": { "name": "@waku/message-encryption", - "version": "0.0.1", + "version": "0.0.2", "license": "MIT OR Apache-2.0", "dependencies": { "@noble/secp256k1": "^1.3.4", diff --git a/packages/byte-utils/package.json b/packages/byte-utils/package.json index c137454a0b..70599e7063 100644 --- a/packages/byte-utils/package.json +++ b/packages/byte-utils/package.json @@ -1,6 +1,6 @@ { "name": "@waku/byte-utils", - "version": "0.0.1", + "version": "0.0.2", "description": "Utilities to manipulate and convert byte arrays", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index f794382623..e2d59c8aa7 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -7,6 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## @waku/core [0.0.2](https://github.com/waku-org/js-waku/compare/@waku/core@0.0.1...@waku/core@0.0.2) (2022-11-04) + +### Changed + +- extract version-1 from chore +- extract utils from core +- extract dns discovery and enr from core ([f7f28f0](https://github.com/waku-org/js-waku/commit/f7f28f03b01fa5bc89eaeb083b68981169b45c39)) +- split outgoing and incoming message interface ([8aa9b43](https://github.com/waku-org/js-waku/commit/8aa9b43f61af356e8faa1859f4844849a7cfa9b1)), closes [#979](https://github.com/waku-org/js-waku/issues/979) + ## [0.30.0] - 2022-10-28 ### Added diff --git a/packages/core/package.json b/packages/core/package.json index 7b41608030..855fd17376 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@waku/core", - "version": "0.0.1", + "version": "0.0.2", "description": "TypeScript implementation of the Waku v2 protocol", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/create/package.json b/packages/create/package.json index e606da4635..5b319a03f2 100644 --- a/packages/create/package.json +++ b/packages/create/package.json @@ -1,6 +1,6 @@ { "name": "@waku/create", - "version": "0.0.1", + "version": "0.0.2", "description": "Easily create a Waku node", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/dns-discovery/package.json b/packages/dns-discovery/package.json index 247da54703..eb85f4311a 100644 --- a/packages/dns-discovery/package.json +++ b/packages/dns-discovery/package.json @@ -1,6 +1,6 @@ { "name": "@waku/dns-discovery", - "version": "0.0.1", + "version": "0.0.2", "description": "DNS Peer Discovery (EIP-1459)", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/enr/package.json b/packages/enr/package.json index 0e89d38238..2bbf604de4 100644 --- a/packages/enr/package.json +++ b/packages/enr/package.json @@ -1,6 +1,6 @@ { "name": "@waku/enr", - "version": "0.0.1", + "version": "0.0.2", "description": "ENR (EIP-778) for Waku", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/interfaces/package.json b/packages/interfaces/package.json index ce15e073be..55fc0ec4fd 100644 --- a/packages/interfaces/package.json +++ b/packages/interfaces/package.json @@ -1,6 +1,6 @@ { "name": "@waku/interfaces", - "version": "0.0.1", + "version": "0.0.2", "description": "Definition of Waku interfaces", "types": "./dist/index.d.ts", "module": "./dist/index.js", diff --git a/packages/message-encryption/package.json b/packages/message-encryption/package.json index 3ae008d454..247307e53c 100644 --- a/packages/message-encryption/package.json +++ b/packages/message-encryption/package.json @@ -1,6 +1,6 @@ { "name": "@waku/message-encryption", - "version": "0.0.1", + "version": "0.0.2", "description": "Waku Message Payload Encryption", "types": "./dist/index.d.ts", "module": "./dist/index.js",