Release 0.0.2

This commit is contained in:
fryorcraken.eth 2022-11-04 14:54:12 +11:00
parent 21f249b73b
commit be45358e9c
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
9 changed files with 23 additions and 14 deletions

14
package-lock.json generated
View File

@ -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",

View File

@ -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",

View File

@ -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

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",

View File

@ -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",