@waku/core 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The file is maintained by [Release Please](https://github.com/googleapis/release-please) based on [Conventional Commits](https://www.conventionalcommits.org) specification,
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
7
7
|
|
8
|
+
## [0.0.13](https://github.com/waku-org/js-waku/compare/core-v0.0.12...core-v0.0.13) (2023-03-24)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* **utils:** Include all ts files ([#1267](https://github.com/waku-org/js-waku/issues/1267)) ([c284159](https://github.com/waku-org/js-waku/commit/c284159ac8eab5bed2313fa5bc7fbea0e83d390f))
|
14
|
+
|
15
|
+
|
16
|
+
### Dependencies
|
17
|
+
|
18
|
+
* The following workspace dependencies were updated
|
19
|
+
* dependencies
|
20
|
+
* @waku/interfaces bumped from 0.0.9 to 0.0.10
|
21
|
+
* @waku/proto bumped from 0.0.3 to 0.0.4
|
22
|
+
* @waku/utils bumped from 0.0.2 to 0.0.3
|
23
|
+
|
8
24
|
## [0.0.12](https://github.com/waku-org/js-waku/compare/core-v0.0.11...core-v0.0.12) (2023-03-23)
|
9
25
|
|
10
26
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@waku/core",
|
3
|
-
"version": "0.0.
|
3
|
+
"version": "0.0.13",
|
4
4
|
"description": "TypeScript implementation of the Waku v2 protocol",
|
5
5
|
"types": "./dist/index.d.ts",
|
6
6
|
"module": "./dist/index.js",
|
@@ -82,9 +82,9 @@
|
|
82
82
|
"dependencies": {
|
83
83
|
"@chainsafe/libp2p-gossipsub": "^6.1.0",
|
84
84
|
"@noble/hashes": "^1.3.0",
|
85
|
-
"@waku/interfaces": "0.0.
|
86
|
-
"@waku/proto": "0.0.
|
87
|
-
"@waku/utils": "0.0.
|
85
|
+
"@waku/interfaces": "0.0.10",
|
86
|
+
"@waku/proto": "0.0.4",
|
87
|
+
"@waku/utils": "0.0.3",
|
88
88
|
"debug": "^4.3.4",
|
89
89
|
"it-all": "^2.0.0",
|
90
90
|
"it-length-prefixed": "^8.0.4",
|
@@ -151,8 +151,7 @@
|
|
151
151
|
"files": [
|
152
152
|
"dist",
|
153
153
|
"bundle",
|
154
|
-
"src
|
155
|
-
"src/lib/**/*.ts",
|
154
|
+
"src/**/*.ts",
|
156
155
|
"!**/*.spec.*",
|
157
156
|
"!**/*.json",
|
158
157
|
"CHANGELOG.md",
|