Skip to content

Commit 4baeedc

Browse files
chore: release main (#123)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ab2155f commit 4baeedc

12 files changed

+54
-20
lines changed

.release-please-manifest.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"packages/types": "0.14.0",
33
"packages/test": "0.14.1",
4-
"packages/core": "0.18.1",
5-
"packages/node": "0.16.2",
4+
"packages/core": "0.18.2",
5+
"packages/node": "0.16.3",
66
"packages/deno": "0.16.2",
7-
"packages/memory": "0.19.1",
8-
"packages/web": "0.13.2"
7+
"packages/memory": "0.19.2",
8+
"packages/web": "0.13.3"
99
}

package-lock.json

+7-7
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@
66
* devDependencies
77
* fsx-types bumped from ^0.0.2 to ^0.0.3
88

9+
## [0.18.2](https://github.com/humanwhocodes/humanfs/compare/core-v0.18.1...core-v0.18.2) (2024-06-13)
10+
11+
12+
### Bug Fixes
13+
14+
* Hfs#walk() entry paths ([#122](https://github.com/humanwhocodes/humanfs/issues/122)) ([ab2155f](https://github.com/humanwhocodes/humanfs/commit/ab2155f5afc8ee6230d9ad2faedc93067471dbf9))
15+
916
## [0.18.1](https://github.com/humanwhocodes/humanfs/compare/core-v0.18.0...core-v0.18.1) (2024-06-12)
1017

1118

packages/core/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/core",
3-
"version": "0.18.1",
3+
"version": "0.18.2",
44
"exports": "./src/index.js",
55
"publish": {
66
"exclude": [

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/core",
3-
"version": "0.18.1",
3+
"version": "0.18.2",
44
"description": "The core of the humanfs library.",
55
"type": "module",
66
"main": "dist/index.js",

packages/memory/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.19.2](https://github.com/humanwhocodes/humanfs/compare/memory-v0.19.1...memory-v0.19.2) (2024-06-13)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @humanfs/core bumped from ^0.18.1 to ^0.18.2
11+
312
## [0.19.1](https://github.com/humanwhocodes/humanfs/compare/memory-v0.19.0...memory-v0.19.1) (2024-06-12)
413

514

packages/memory/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/memory",
3-
"version": "0.19.1",
3+
"version": "0.19.2",
44
"exports": "./src/memory-hfs.js",
55
"publish": {
66
"exclude": [

packages/memory/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/memory",
3-
"version": "0.19.1",
3+
"version": "0.19.2",
44
"description": "The in-memory bindings for the hfs library.",
55
"type": "module",
66
"main": "dist/memory-hfs.js",
@@ -51,6 +51,6 @@
5151
"@humanfs/types": "^0.14.0"
5252
},
5353
"dependencies": {
54-
"@humanfs/core": "^0.18.1"
54+
"@humanfs/core": "^0.18.2"
5555
}
5656
}

packages/node/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,15 @@
66
* dependencies
77
* @humanfs/core bumped from ^0.14.0 to ^0.15.0
88

9+
## [0.16.3](https://github.com/humanwhocodes/humanfs/compare/node-v0.16.2...node-v0.16.3) (2024-06-13)
10+
11+
12+
### Dependencies
13+
14+
* The following workspace dependencies were updated
15+
* dependencies
16+
* @humanfs/core bumped from ^0.18.1 to ^0.18.2
17+
918
## [0.16.2](https://github.com/humanwhocodes/humanfs/compare/node-v0.16.1...node-v0.16.2) (2024-06-12)
1019

1120

packages/node/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/node",
3-
"version": "0.16.2",
3+
"version": "0.16.3",
44
"description": "The Node.js bindings of the humanfs library.",
55
"type": "module",
66
"main": "dist/index.js",
@@ -52,6 +52,6 @@
5252
},
5353
"dependencies": {
5454
"@humanwhocodes/retry": "^0.3.0",
55-
"@humanfs/core": "^0.18.1"
55+
"@humanfs/core": "^0.18.2"
5656
}
5757
}

packages/web/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [0.13.3](https://github.com/humanwhocodes/humanfs/compare/web-v0.13.2...web-v0.13.3) (2024-06-13)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @humanfs/core bumped from ^0.18.1 to ^0.18.2
11+
312
## [0.13.2](https://github.com/humanwhocodes/humanfs/compare/web-v0.13.1...web-v0.13.2) (2024-06-12)
413

514

packages/web/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/web",
3-
"version": "0.13.2",
3+
"version": "0.13.3",
44
"description": "The in-web bindings for the hfs library.",
55
"type": "module",
66
"types": "dist/index.d.ts",
@@ -57,6 +57,6 @@
5757
"typescript": "^5.2.2"
5858
},
5959
"dependencies": {
60-
"@humanfs/core": "^0.18.1"
60+
"@humanfs/core": "^0.18.2"
6161
}
6262
}

0 commit comments

Comments
 (0)