mirror of https://github.com/status-im/js-waku.git
Merge pull request #1106 from waku-org/release/core@0.0.8
This commit is contained in:
commit
26b9d04912
|
@ -27089,7 +27089,7 @@
|
|||
},
|
||||
"packages/core": {
|
||||
"name": "@waku/core",
|
||||
"version": "0.0.7",
|
||||
"version": "0.0.8",
|
||||
"license": "MIT OR Apache-2.0",
|
||||
"dependencies": {
|
||||
"@chainsafe/libp2p-gossipsub": "^5.2.1",
|
||||
|
@ -27186,7 +27186,7 @@
|
|||
},
|
||||
"packages/create": {
|
||||
"name": "@waku/create",
|
||||
"version": "0.0.5",
|
||||
"version": "0.0.6",
|
||||
"license": "MIT OR Apache-2.0",
|
||||
"dependencies": {
|
||||
"@chainsafe/libp2p-noise": "^10.1.0",
|
||||
|
@ -27381,7 +27381,7 @@
|
|||
},
|
||||
"packages/message-encryption": {
|
||||
"name": "@waku/message-encryption",
|
||||
"version": "0.0.6",
|
||||
"version": "0.0.7",
|
||||
"license": "MIT OR Apache-2.0",
|
||||
"dependencies": {
|
||||
"@noble/secp256k1": "^1.3.4",
|
||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [@waku/core@0.0.8] - 2022-12-19
|
||||
|
||||
### Fixed
|
||||
|
||||
- Missing dependency declarations.
|
||||
|
@ -632,7 +634,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- [ReactJS Chat App example](./examples/web-chat).
|
||||
- [Typedoc Documentation](https://js-waku.wakuconnect.dev/).
|
||||
|
||||
[unreleased]: https://github.com/status-im/js-waku/compare/@waku/core@0.0.7...HEAD
|
||||
[unreleased]: https://github.com/status-im/js-waku/compare/@waku/core@0.0.8...HEAD
|
||||
[@waku/core@0.0.8]: https://github.com/waku-org/js-waku/compare/@waku/core@0.0.7...@waku/core@0.0.8
|
||||
[@waku/core@0.0.7]: https://github.com/waku-org/js-waku/compare/@waku/core@0.0.6...@waku/core@0.0.7
|
||||
[@waku/core@0.0.6]: https://github.com/waku-org/js-waku/compare/@waku/core@0.0.5...@waku/core@0.0.6
|
||||
[@waku/core@0.0.5]: https://github.com/waku-org/js-waku/compare/@waku/core@0.0.4...@waku/core@0.0.5
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/core",
|
||||
"version": "0.0.7",
|
||||
"version": "0.0.8",
|
||||
"description": "TypeScript implementation of the Waku v2 protocol",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
|
|
@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.0.6] - 2022-12-19
|
||||
|
||||
### Fixed
|
||||
|
||||
- Missing dependency declarations.
|
||||
|
@ -23,7 +25,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Alpha version of `@waku/create`.
|
||||
|
||||
[unreleased]: https://github.com/waku-org/js-waku/compare/@waku/create@0.0.5...HEAD
|
||||
[unreleased]: https://github.com/waku-org/js-waku/compare/@waku/create@0.0.6...HEAD
|
||||
[0.0.6]: https://github.com/waku-org/js-waku/compare/@waku/create@0.0.5...@waku/create@0.0.6
|
||||
[0.0.5]: https://github.com/waku-org/js-waku/compare/@waku/create@0.0.4...@waku/create@0.0.5
|
||||
[0.0.4]: https://github.com/waku-org/js-waku/compare/@waku/create@0.0.3...@waku/create@0.0.4
|
||||
[0.0.3]: https://github.com/waku-org/js-waku/compare/@waku/create@0.0.2...%40waku/create@0.0.3
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/create",
|
||||
"version": "0.0.5",
|
||||
"version": "0.0.6",
|
||||
"description": "Easily create a Waku node",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
|
|
@ -7,12 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.0.5] - 2022-12-16
|
||||
## [0.0.7] - 2022-12-19
|
||||
|
||||
### Fixed
|
||||
|
||||
- Incorrect `proto` import.
|
||||
|
||||
## [0.0.6] - 2022-12-16
|
||||
|
||||
### Fixed
|
||||
|
||||
- Type resolution when using `moduleResolution: node`.
|
||||
- Incorrect `proto` import.
|
||||
|
||||
## [0.0.5] - 2022-12-15
|
||||
|
||||
|
@ -35,7 +40,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
|
||||
- Alpha version of `@waku/message-encryption`.
|
||||
|
||||
[unreleased]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.6...HEAD
|
||||
[unreleased]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.7...HEAD
|
||||
[0.0.7]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.6...@waku/message-encryption@0.0.7
|
||||
[0.0.6]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.5...@waku/message-encryption@0.0.6
|
||||
[0.0.5]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.4...@waku/message-encryption@0.0.5
|
||||
[0.0.4]: https://github.com/waku-org/js-waku/compare/@waku/message-encryption@0.0.3...@waku/message-encryption@0.0.4
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@waku/message-encryption",
|
||||
"version": "0.0.6",
|
||||
"version": "0.0.7",
|
||||
"description": "Waku Message Payload Encryption",
|
||||
"types": "./dist/index.d.ts",
|
||||
"module": "./dist/index.js",
|
||||
|
|
Loading…
Reference in New Issue