Skip to content

Commit

Permalink
chore: Update version for release (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored Sep 13, 2023
1 parent ff8f185 commit e841853
Show file tree
Hide file tree
Showing 13 changed files with 41 additions and 59 deletions.
9 changes: 0 additions & 9 deletions .changeset/afraid-coats-rescue.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/pre.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rude-wolves-float.md

This file was deleted.

8 changes: 4 additions & 4 deletions packages/blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Changelog

## 3.1.0-pre.0
## 3.1.0

### Minor Changes

- 807fc63: Export CJS version for browser
- Export CJS version for browser ([807fc63](https://github.com/remix-run/web-std-io/commit/807fc63))

### Patch Changes

- Updated dependencies [807fc63]
- @remix-run/web-stream@1.1.0-pre.0
- Updated dependencies
- `@remix-run/web-stream@1.1.0`

## 3.0.5

Expand Down
6 changes: 3 additions & 3 deletions packages/blob/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-blob",
"version": "3.1.0-pre.0",
"version": "3.1.0",
"description": "Web API compatible Blob implementation",
"keywords": [
"blob",
Expand Down Expand Up @@ -28,14 +28,14 @@
}
},
"dependencies": {
"@remix-run/web-stream": "^1.1.0-pre.0",
"@remix-run/web-stream": "^1.1.0",
"web-encoding": "1.1.5"
},
"author": "Irakli Gozalishvili <dev@gozala.io> (https://gozala.io)",
"repository": "https://github.com/remix-run/web-std-io",
"license": "MIT",
"devDependencies": {
"@remix-run/web-fetch": "^4.4.0-pre.0",
"@remix-run/web-fetch": "^4.4.0",
"@types/node": "15.0.2",
"git-validate": "2.2.4",
"husky": "^6.0.0",
Expand Down
14 changes: 7 additions & 7 deletions packages/fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Changelog

## 4.4.0-pre.0
## 4.4.0

### Minor Changes

- 807fc63: Export CJS version for browser
- Export CJS version for browser ([807fc63](https://github.com/remix-run/web-std-io/commit/807fc63))

### Patch Changes

- d3a1ffd: fix `toFormData` imports
- Updated dependencies [807fc63]
- @remix-run/web-file@3.1.0-pre.0
- @remix-run/web-form-data@3.1.0-pre.0
- @remix-run/web-stream@1.1.0-pre.0
- Fix `toFormData` imports ([d3a1ffd](https://github.com/remix-run/web-std-io/commit/d3a1ffd))
- Updated dependencies
- `@remix-run/web-file@3.1.0`
- `@remix-run/web-form-data@3.1.0`
- `@remix-run/web-stream@1.1.0`

## 4.3.8

Expand Down
8 changes: 4 additions & 4 deletions packages/fetch/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-fetch",
"version": "4.4.0-pre.0",
"version": "4.4.0",
"description": "Web API compatible fetch implementation",
"main": "./dist/lib.node.cjs",
"module": "./src/lib.node.js",
Expand Down Expand Up @@ -99,9 +99,9 @@
"xo": "^0.33.1"
},
"dependencies": {
"@remix-run/web-file": "^3.1.0-pre.0",
"@remix-run/web-form-data": "^3.1.0-pre.0",
"@remix-run/web-stream": "^1.1.0-pre.0",
"@remix-run/web-file": "^3.1.0",
"@remix-run/web-form-data": "^3.1.0",
"@remix-run/web-stream": "^1.1.0",
"@web3-storage/multipart-parser": "^1.0.0",
"abort-controller": "^3.0.0",
"data-uri-to-buffer": "^3.0.1",
Expand Down
11 changes: 11 additions & 0 deletions packages/file/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## 3.1.0

### Minor Changes

- Export CJS version for browser ([807fc63](https://github.com/remix-run/web-std-io/commit/807fc63))

### Patch Changes

- Updated dependencies
- `@remix-run/web-blob@3.1.0`

## 3.1.0-pre.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/file/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-file",
"version": "3.1.0-pre.0",
"version": "3.1.0",
"description": "Web API compatible File implementation for node",
"files": [
"src",
Expand Down Expand Up @@ -33,13 +33,13 @@
}
},
"dependencies": {
"@remix-run/web-blob": "^3.1.0-pre.0"
"@remix-run/web-blob": "^3.1.0"
},
"author": "Irakli Gozalishvili <dev@gozala.io> (https://gozala.io)",
"repository": "https://github.com/remix-run/web-std-io",
"license": "MIT",
"devDependencies": {
"@remix-run/web-fetch": "^4.4.0-pre.0",
"@remix-run/web-fetch": "^4.4.0",
"@types/node": "15.0.2",
"git-validate": "2.2.4",
"husky": "^6.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/form-data/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## 3.1.0-pre.0
## 3.1.0

### Minor Changes

- 807fc63: Export CJS version for browser
- Export CJS version for browser ([807fc63](https://github.com/remix-run/web-std-io/commit/807fc63))

## 3.0.5

Expand Down
8 changes: 4 additions & 4 deletions packages/form-data/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-form-data",
"version": "3.1.0-pre.0",
"version": "3.1.0",
"description": "Web API compatible Form Data implementation",
"files": [
"src",
Expand Down Expand Up @@ -37,9 +37,9 @@
"repository": "https://github.com/remix-run/web-std-io",
"license": "MIT",
"devDependencies": {
"@remix-run/web-blob": "^3.1.0-pre.0",
"@remix-run/web-fetch": "^4.4.0-pre.0",
"@remix-run/web-file": "^3.1.0-pre.0",
"@remix-run/web-blob": "^3.1.0",
"@remix-run/web-fetch": "^4.4.0",
"@remix-run/web-file": "^3.1.0",
"@types/node": "15.0.2",
"git-validate": "2.2.4",
"husky": "^6.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/stream/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Changelog

## 1.1.0-pre.0
## 1.1.0

### Minor Changes

- 807fc63: Export CJS version for browser
- Export CJS version for browser ([807fc63](https://github.com/remix-run/web-std-io/commit/807fc63))

## 1.0.4

Expand Down
2 changes: 1 addition & 1 deletion packages/stream/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@remix-run/web-stream",
"version": "1.1.0-pre.0",
"version": "1.1.0",
"description": "Web API compatible streams for node/web",
"files": [
"src",
Expand Down

0 comments on commit e841853

Please sign in to comment.