mirror of https://github.com/status-im/js-waku.git
chore: release master (#1286)
This commit is contained in:
parent
789fbb89b5
commit
e8f750fa2b
|
@ -3,9 +3,9 @@
|
|||
"packages/proto": "0.0.4",
|
||||
"packages/interfaces": "0.0.10",
|
||||
"packages/enr": "0.0.9",
|
||||
"packages/peer-exchange": "0.0.7",
|
||||
"packages/core": "0.0.14",
|
||||
"packages/peer-exchange": "0.0.8",
|
||||
"packages/core": "0.0.15",
|
||||
"packages/dns-discovery": "0.0.9",
|
||||
"packages/message-encryption": "0.0.12",
|
||||
"packages/create": "0.0.10"
|
||||
"packages/message-encryption": "0.0.13",
|
||||
"packages/create": "0.0.11"
|
||||
}
|
||||
|
|
|
@ -5,6 +5,13 @@ 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,
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.0.15](https://github.com/waku-org/js-waku/compare/core-v0.0.14...core-v0.0.15) (2023-03-31)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* Update @waku/core changelog ([#1287](https://github.com/waku-org/js-waku/issues/1287)) ([5def8dd](https://github.com/waku-org/js-waku/commit/5def8ddb4d9a43424bf2124a521d618368ffa9dc))
|
||||
|
||||
## [0.0.14](https://github.com/waku-org/js-waku/compare/core-v0.0.12...core-v0.0.13) (2023-03-29)
|
||||
|
||||
### Features
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/core",
|
||||
"version": "0.0.14",
|
||||
"version": "0.0.15",
|
||||
"description": "TypeScript implementation of the Waku v2 protocol",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
|
|
@ -11,6 +11,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
* dependencies
|
||||
* @waku/dns-discovery bumped from 0.0.8 to 0.0.9
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/core bumped from 0.0.14 to 0.0.15
|
||||
|
||||
## [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",
|
||||
"version": "0.0.10",
|
||||
"version": "0.0.11",
|
||||
"description": "Easily create a Waku node",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -53,7 +53,7 @@
|
|||
"@chainsafe/libp2p-noise": "^11.0.0",
|
||||
"@libp2p/mplex": "^7.1.1",
|
||||
"@libp2p/websockets": "^5.0.3",
|
||||
"@waku/core": "0.0.14",
|
||||
"@waku/core": "0.0.15",
|
||||
"@waku/dns-discovery": "0.0.9",
|
||||
"libp2p": "^0.42.2"
|
||||
},
|
||||
|
|
|
@ -21,6 +21,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
* @waku/proto bumped from 0.0.3 to 0.0.4
|
||||
* @waku/utils bumped from 0.0.2 to 0.0.3
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/core bumped from 0.0.14 to 0.0.15
|
||||
|
||||
## [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",
|
||||
"version": "0.0.12",
|
||||
"version": "0.0.13",
|
||||
"description": "Waku Message Payload Encryption",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -74,7 +74,7 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@noble/secp256k1": "^1.7.1",
|
||||
"@waku/core": "0.0.14",
|
||||
"@waku/core": "0.0.15",
|
||||
"@waku/interfaces": "0.0.10",
|
||||
"@waku/proto": "0.0.4",
|
||||
"@waku/utils": "0.0.3",
|
||||
|
|
|
@ -17,6 +17,12 @@
|
|||
* dependencies
|
||||
* @waku/enr bumped from 0.0.8 to 0.0.9
|
||||
|
||||
### Dependencies
|
||||
|
||||
* The following workspace dependencies were updated
|
||||
* dependencies
|
||||
* @waku/core bumped from 0.0.14 to 0.0.15
|
||||
|
||||
## [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",
|
||||
"version": "0.0.7",
|
||||
"version": "0.0.8",
|
||||
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
@ -52,7 +52,7 @@
|
|||
"dependencies": {
|
||||
"@libp2p/interface-peer-discovery": "^1.0.5",
|
||||
"@libp2p/interfaces": "^3.3.1",
|
||||
"@waku/core": "0.0.14",
|
||||
"@waku/core": "0.0.15",
|
||||
"@waku/enr": "0.0.9",
|
||||
"@waku/proto": "0.0.4",
|
||||
"@waku/utils": "0.0.3",
|
||||
|
|
Loading…
Reference in New Issue