Skip to content

Commit

Permalink
Merge pull request #29 from sor4chi/changeset-release/main
Browse files Browse the repository at this point in the history
Version Packages
  • Loading branch information
sor4chi authored Oct 28, 2023
2 parents c0c742f + 84e7b98 commit 24b20df
Show file tree
Hide file tree
Showing 19 changed files with 86 additions and 32 deletions.
23 changes: 0 additions & 23 deletions .changeset/sour-forks-film.md

This file was deleted.

7 changes: 7 additions & 0 deletions examples/memory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/memory-example

## 0.0.4

### Patch Changes

- Updated dependencies []:
- @hono-storage/memory@0.0.4

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/memory/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/memory-example",
"private": true,
"version": "0.0.3",
"version": "0.0.4",
"scripts": {
"start": "tsx src/index.ts"
},
Expand Down
7 changes: 7 additions & 0 deletions examples/nodejs-disk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/node-disk-example

## 0.0.6

### Patch Changes

- Updated dependencies []:
- @hono-storage/node-disk@0.0.6

## 0.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/nodejs-disk/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/node-disk-example",
"private": true,
"version": "0.0.5",
"version": "0.0.6",
"scripts": {
"start": "tsx src/index.ts"
},
Expand Down
7 changes: 7 additions & 0 deletions examples/r2-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/r2-node-example

## 0.0.3

### Patch Changes

- Updated dependencies []:
- @hono-storage/s3@0.0.4

## 0.0.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/r2-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/r2-node-example",
"private": true,
"version": "0.0.2",
"version": "0.0.3",
"scripts": {
"start": "tsx src/index.ts"
},
Expand Down
7 changes: 7 additions & 0 deletions examples/s3-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/s3-node-example

## 0.0.4

### Patch Changes

- Updated dependencies []:
- @hono-storage/s3@0.0.4

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/s3-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/s3-node-example",
"private": true,
"version": "0.0.3",
"version": "0.0.4",
"scripts": {
"start": "tsx src/index.ts"
},
Expand Down
7 changes: 7 additions & 0 deletions examples/s3-workers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/s3-workers-example

## 0.0.4

### Patch Changes

- Updated dependencies []:
- @hono-storage/s3@0.0.4

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/s3-workers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@hono-storage/s3-workers-example",
"private": true,
"version": "0.0.3",
"version": "0.0.4",
"scripts": {
"dev": "wrangler dev src/index.ts",
"deploy": "wrangler deploy --minify src/index.ts"
Expand Down
21 changes: 21 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @hono-storage/core

## 0.0.5

### Patch Changes

- [#28](https://github.com/sor4chi/hono-storage/pull/28) [`51fa375`](https://github.com/sor4chi/hono-storage/commit/51fa3752a49ddb7403edb57b0f1a1feaf154978b) Thanks [@sor4chi](https://github.com/sor4chi)! - Breaking change: The argument of `storage.field` function is changed.

## Before

```ts
storage.field([{ name: "files", maxCount: 3 }, { name: "image" }]);
```

## After

```ts
storage.field({
files: { type: "multiple", maxCount: 3 },
image: { type: "single" },
});
```

## 0.0.4

### Patch Changes
Expand Down
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": "@hono-storage/core",
"version": "0.0.4",
"version": "0.0.5",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/memory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/memory

## 0.0.4

### Patch Changes

- Updated dependencies [[`51fa375`](https://github.com/sor4chi/hono-storage/commit/51fa3752a49ddb7403edb57b0f1a1feaf154978b)]:
- @hono-storage/core@0.0.5

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/memory/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hono-storage/memory",
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/node-disk/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/node-disk

## 0.0.6

### Patch Changes

- Updated dependencies [[`51fa375`](https://github.com/sor4chi/hono-storage/commit/51fa3752a49ddb7403edb57b0f1a1feaf154978b)]:
- @hono-storage/core@0.0.5

## 0.0.5

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/node-disk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hono-storage/node-disk",
"version": "0.0.5",
"version": "0.0.6",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down
7 changes: 7 additions & 0 deletions packages/s3/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @hono-storage/s3

## 0.0.4

### Patch Changes

- Updated dependencies [[`51fa375`](https://github.com/sor4chi/hono-storage/commit/51fa3752a49ddb7403edb57b0f1a1feaf154978b)]:
- @hono-storage/core@0.0.5

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/s3/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hono-storage/s3",
"version": "0.0.3",
"version": "0.0.4",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.mjs",
Expand Down

0 comments on commit 24b20df

Please sign in to comment.