Skip to content

Commit

Permalink
chore: release main (#101)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] authored Mar 13, 2024
1 parent 83c3d9b commit 12f28be
Show file tree
Hide file tree
Showing 15 changed files with 70 additions and 24 deletions.
10 changes: 5 additions & 5 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"packages/types": "0.12.0",
"packages/test": "0.13.0",
"packages/core": "0.15.0",
"packages/node": "0.15.0",
"packages/deno": "0.15.0",
"packages/memory": "0.16.0",
"packages/web": "0.12.0"
"packages/core": "0.16.0",
"packages/node": "0.15.1",
"packages/deno": "0.15.1",
"packages/memory": "0.17.0",
"packages/web": "0.12.1"
}
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
* devDependencies
* fsx-types bumped from ^0.0.2 to ^0.0.3

## [0.16.0](https://github.com/humanwhocodes/humanfs/compare/core-v0.15.0...core-v0.16.0) (2024-03-13)


### Features

* Add JSR packages ([83c3d9b](https://github.com/humanwhocodes/humanfs/commit/83c3d9b48cdcf961386dad768248bf3c6dade18b))

## [0.15.0](https://github.com/humanwhocodes/humanfs/compare/core-v0.14.0...core-v0.15.0) (2024-02-27)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@humanfs/core",
"version": "0.15.0",
"version": "0.16.0",
"exports": "./src/index.js"
}
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humanfs/core",
"version": "0.15.0",
"version": "0.16.0",
"description": "The core of the humanfs library.",
"type": "module",
"types": "dist/index.d.ts",
Expand Down
7 changes: 7 additions & 0 deletions packages/deno/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [0.15.1](https://github.com/humanwhocodes/humanfs/compare/deno-v0.15.0...deno-v0.15.1) (2024-03-13)


### Bug Fixes

* package.json/deno.json conflict ([1a6f13b](https://github.com/humanwhocodes/humanfs/commit/1a6f13b4d58c1458e726b036868018428314b232))

## [0.15.0](https://github.com/humanwhocodes/humanfs/compare/deno-v0.14.0...deno-v0.15.0) (2024-03-13)


Expand Down
2 changes: 1 addition & 1 deletion packages/deno/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humanfs/deno",
"version": "0.15.0",
"version": "0.15.1",
"exports": "./src/index.js",
"imports": {
"@humanfs/core": "../core/src/hfs.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/deno/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humanfs/deno",
"version": "0.15.0",
"version": "0.15.1",
"description": "The Deno bindings of the humanfs library.",
"type": "module",
"types": "dist/index.d.ts",
Expand Down
14 changes: 14 additions & 0 deletions packages/memory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.17.0](https://github.com/humanwhocodes/humanfs/compare/memory-v0.16.0...memory-v0.17.0) (2024-03-13)


### Features

* Add JSR packages ([83c3d9b](https://github.com/humanwhocodes/humanfs/commit/83c3d9b48cdcf961386dad768248bf3c6dade18b))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @humanfs/core bumped from ^0.15.0 to ^0.16.0

## [0.16.0](https://github.com/humanwhocodes/humanfs/compare/memory-v0.15.0...memory-v0.16.0) (2024-03-13)


Expand Down
2 changes: 1 addition & 1 deletion packages/memory/deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@humanfs/memory",
"version": "0.16.0",
"version": "0.17.0",
"exports": "./src/memory-hfs.js"
}
4 changes: 2 additions & 2 deletions packages/memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humanfs/memory",
"version": "0.16.0",
"version": "0.17.0",
"description": "The in-memory bindings for the hfs library.",
"type": "module",
"types": "dist/memory-hfs.d.ts",
Expand Down Expand Up @@ -50,6 +50,6 @@
"@humanfs/types": "^0.12.0"
},
"dependencies": {
"@humanfs/core": "^0.15.0"
"@humanfs/core": "^0.16.0"
}
}
9 changes: 9 additions & 0 deletions packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,15 @@
* dependencies
* @humanfs/core bumped from ^0.14.0 to ^0.15.0

## [0.15.1](https://github.com/humanwhocodes/humanfs/compare/node-v0.15.0...node-v0.15.1) (2024-03-13)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @humanfs/core bumped from ^0.15.0 to ^0.16.0

## [0.15.0](https://github.com/humanwhocodes/humanfs/compare/node-v0.14.1...node-v0.15.0) (2024-03-13)


Expand Down
4 changes: 2 additions & 2 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humanfs/node",
"version": "0.15.0",
"version": "0.15.1",
"description": "The Node.js bindings of the humanfs library.",
"type": "module",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -51,6 +51,6 @@
},
"dependencies": {
"@humanwhocodes/retry": "^0.1.2",
"@humanfs/core": "^0.15.0"
"@humanfs/core": "^0.16.0"
}
}
9 changes: 9 additions & 0 deletions packages/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [0.12.1](https://github.com/humanwhocodes/humanfs/compare/web-v0.12.0...web-v0.12.1) (2024-03-13)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @humanfs/core bumped from ^0.15.0 to ^0.16.0

## [0.12.0](https://github.com/humanwhocodes/humanfs/compare/web-v0.11.0...web-v0.12.0) (2024-03-13)


Expand Down
4 changes: 2 additions & 2 deletions packages/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@humanfs/web",
"version": "0.12.0",
"version": "0.12.1",
"description": "The in-web bindings for the hfs library.",
"type": "module",
"types": "dist/index.d.ts",
Expand Down Expand Up @@ -57,6 +57,6 @@
"typescript": "^5.2.2"
},
"dependencies": {
"@humanfs/core": "^0.15.0"
"@humanfs/core": "^0.16.0"
}
}

0 comments on commit 12f28be

Please sign in to comment.