chore: release master

This commit is contained in:
fryorcraken.eth 2023-03-29 04:19:45 +11:00
parent 94940411b0
commit aead369227
9 changed files with 36 additions and 11 deletions

View File

@ -2,10 +2,10 @@
"packages/utils": "0.0.3",
"packages/proto": "0.0.4",
"packages/interfaces": "0.0.10",
"packages/enr": "0.0.8",
"packages/peer-exchange": "0.0.6",
"packages/enr": "0.0.9",
"packages/peer-exchange": "0.0.7",
"packages/core": "0.0.13",
"packages/dns-discovery": "0.0.8",
"packages/dns-discovery": "0.0.9",
"packages/message-encryption": "0.0.12",
"packages/create": "0.0.9"
"packages/create": "0.0.10"
}

View File

@ -5,6 +5,12 @@ 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).
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/dns-discovery bumped from 0.0.8 to 0.0.9
## [0.0.9](https://github.com/waku-org/js-waku/compare/create-v0.0.8...create-v0.0.9) (2023-03-24)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/create",
"version": "0.0.9",
"version": "0.0.10",
"description": "Easily create a Waku node",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -54,7 +54,7 @@
"@libp2p/mplex": "^7.1.1",
"@libp2p/websockets": "^5.0.3",
"@waku/core": "0.0.13",
"@waku/dns-discovery": "0.0.8",
"@waku/dns-discovery": "0.0.9",
"libp2p": "^0.42.2"
},
"devDependencies": {

View File

@ -22,6 +22,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* devDependencies
* @waku/interfaces bumped from 0.0.9 to 0.0.10
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from 0.0.8 to 0.0.9
## [0.0.6](https://github.com/waku-org/js-waku/compare/dns-discovery-v0.0.5...dns-discovery-v0.0.6) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/dns-discovery",
"version": "0.0.8",
"version": "0.0.9",
"description": "DNS Peer Discovery (EIP-1459)",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -61,7 +61,7 @@
"dependencies": {
"@libp2p/interface-peer-discovery": "^1.0.5",
"@libp2p/interfaces": "^3.3.1",
"@waku/enr": "0.0.8",
"@waku/enr": "0.0.9",
"@waku/utils": "0.0.3",
"debug": "^4.3.4",
"dns-query": "^0.11.2",

View File

@ -19,6 +19,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* devDependencies
* @waku/interfaces bumped from 0.0.9 to 0.0.10
## [0.0.9](https://github.com/waku-org/js-waku/compare/enr-v0.0.8...enr-v0.0.9) (2023-03-28)
### Bug Fixes
* Ensure that websocket multiaddrs are returned from ENR ([#1275](https://github.com/waku-org/js-waku/issues/1275)) ([9494041](https://github.com/waku-org/js-waku/commit/94940411b0fd525044765b9068068ddf274eba2f)), closes [#1271](https://github.com/waku-org/js-waku/issues/1271)
## [0.0.6](https://github.com/waku-org/js-waku/compare/enr-v0.0.5...enr-v0.0.6) (2023-03-16)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/enr",
"version": "0.0.8",
"version": "0.0.9",
"description": "ENR (EIP-778) for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",

View File

@ -11,6 +11,12 @@
* devDependencies
* @waku/interfaces bumped from 0.0.9 to 0.0.10
### Dependencies
* The following workspace dependencies were updated
* dependencies
* @waku/enr bumped from 0.0.8 to 0.0.9
## [0.0.5](https://github.com/waku-org/js-waku/compare/peer-exchange-v0.0.4...peer-exchange-v0.0.5) (2023-03-23)

View File

@ -1,6 +1,6 @@
{
"name": "@waku/peer-exchange",
"version": "0.0.6",
"version": "0.0.7",
"description": "Peer Exchange (https://rfc.vac.dev/spec/34/) protocol for Waku",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
@ -53,7 +53,7 @@
"@libp2p/interface-peer-discovery": "^1.0.5",
"@libp2p/interfaces": "^3.3.1",
"@waku/core": "0.0.13",
"@waku/enr": "0.0.8",
"@waku/enr": "0.0.9",
"@waku/proto": "0.0.4",
"@waku/utils": "0.0.3",
"debug": "^4.3.4",