Skip to content

Commit 6ddae25

Browse files
chore: release main
1 parent 8572f94 commit 6ddae25

File tree

14 files changed

+92
-27
lines changed

14 files changed

+92
-27
lines changed

.release-please-manifest.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"packages/box": "0.1.2",
2+
"packages/box": "0.1.3",
33
"packages/types": "0.15.0",
44
"packages/test": "0.15.0",
5-
"packages/core": "0.19.1",
6-
"packages/node": "0.16.7",
5+
"packages/core": "0.19.2",
6+
"packages/node": "0.16.8",
77
"packages/deno": "0.17.1",
8-
"packages/memory": "0.19.5",
9-
"packages/web": "0.14.1"
8+
"packages/memory": "0.19.6",
9+
"packages/web": "0.14.2"
1010
}

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/box/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [0.1.3](https://github.com/humanwhocodes/humanfs/compare/box-v0.1.2...box-v0.1.3) (2025-03-26)
4+
5+
6+
### Bug Fixes
7+
8+
* Include type dependencies at runtime ([956ce7a](https://github.com/humanwhocodes/humanfs/commit/956ce7aac2a998d0af23b7cb08e7630b69693138)), closes [#145](https://github.com/humanwhocodes/humanfs/issues/145)
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @humanfs/core bumped from ^0.19.1 to ^0.19.2
16+
* devDependencies
17+
* @humanfs/memory bumped from ^0.19.5 to ^0.19.6
18+
319
## [0.1.2](https://github.com/humanwhocodes/humanfs/compare/box-v0.1.1...box-v0.1.2) (2024-10-18)
420

521

packages/box/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/box",
3-
"version": "0.1.2",
3+
"version": "0.1.3",
44
"description": "The Box API bindings for the hfs library.",
55
"type": "module",
66
"types": "dist/index.d.ts",
@@ -43,7 +43,7 @@
4343
"node": ">=18.18.0"
4444
},
4545
"devDependencies": {
46-
"@humanfs/memory": "^0.19.5",
46+
"@humanfs/memory": "^0.19.6",
4747
"@humanfs/test": "^0.15.0",
4848
"@humanwhocodes/object-store": "^0.2.0",
4949
"@types/node": "^20.9.4",
@@ -53,7 +53,7 @@
5353
"typescript": "^5.2.2"
5454
},
5555
"dependencies": {
56-
"@humanfs/core": "^0.19.1",
56+
"@humanfs/core": "^0.19.2",
5757
"@humanfs/types": "^0.15.0"
5858
}
5959
}

packages/core/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
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.19.2](https://github.com/humanwhocodes/humanfs/compare/core-v0.19.1...core-v0.19.2) (2025-03-26)
10+
11+
12+
### Bug Fixes
13+
14+
* Include type dependencies at runtime ([956ce7a](https://github.com/humanwhocodes/humanfs/commit/956ce7aac2a998d0af23b7cb08e7630b69693138)), closes [#145](https://github.com/humanwhocodes/humanfs/issues/145)
15+
916
## [0.19.1](https://github.com/humanwhocodes/humanfs/compare/core-v0.19.0...core-v0.19.1) (2024-10-18)
1017

1118

packages/core/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/core",
3-
"version": "0.19.1",
3+
"version": "0.19.2",
44
"exports": "./src/index.js",
55
"publish": {
66
"exclude": [

packages/core/package.json

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

packages/memory/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.19.6](https://github.com/humanwhocodes/humanfs/compare/memory-v0.19.5...memory-v0.19.6) (2025-03-26)
4+
5+
6+
### Bug Fixes
7+
8+
* Include type dependencies at runtime ([956ce7a](https://github.com/humanwhocodes/humanfs/commit/956ce7aac2a998d0af23b7cb08e7630b69693138)), closes [#145](https://github.com/humanwhocodes/humanfs/issues/145)
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @humanfs/core bumped from ^0.19.1 to ^0.19.2
16+
317
## [0.19.5](https://github.com/humanwhocodes/humanfs/compare/memory-v0.19.4...memory-v0.19.5) (2024-10-18)
418

519

packages/memory/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/memory",
3-
"version": "0.19.5",
3+
"version": "0.19.6",
44
"exports": "./src/memory-hfs.js",
55
"publish": {
66
"exclude": [

packages/memory/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@humanfs/memory",
3-
"version": "0.19.5",
3+
"version": "0.19.6",
44
"description": "The in-memory bindings for the hfs library.",
55
"type": "module",
66
"main": "dist/memory-hfs.js",
@@ -50,7 +50,7 @@
5050
"@humanfs/test": "^0.15.0"
5151
},
5252
"dependencies": {
53-
"@humanfs/core": "^0.19.1",
53+
"@humanfs/core": "^0.19.2",
5454
"@humanfs/types": "^0.15.0"
5555
}
5656
}

0 commit comments

Comments
 (0)