Skip to content

Commit e841853

Browse files
chore: Update version for release (#51)
1 parent ff8f185 commit e841853

13 files changed

+41
-59
lines changed

.changeset/afraid-coats-rescue.md

-9
This file was deleted.

.changeset/pre.json

-15
This file was deleted.

.changeset/rude-wolves-float.md

-5
This file was deleted.

packages/blob/CHANGELOG.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# Changelog
22

3-
## 3.1.0-pre.0
3+
## 3.1.0
44

55
### Minor Changes
66

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

99
### Patch Changes
1010

11-
- Updated dependencies [807fc63]
12-
- @remix-run/web-stream@1.1.0-pre.0
11+
- Updated dependencies
12+
- `@remix-run/[email protected]`
1313

1414
## 3.0.5
1515

packages/blob/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/web-blob",
3-
"version": "3.1.0-pre.0",
3+
"version": "3.1.0",
44
"description": "Web API compatible Blob implementation",
55
"keywords": [
66
"blob",
@@ -28,14 +28,14 @@
2828
}
2929
},
3030
"dependencies": {
31-
"@remix-run/web-stream": "^1.1.0-pre.0",
31+
"@remix-run/web-stream": "^1.1.0",
3232
"web-encoding": "1.1.5"
3333
},
3434
"author": "Irakli Gozalishvili <[email protected]> (https://gozala.io)",
3535
"repository": "https://github.com/remix-run/web-std-io",
3636
"license": "MIT",
3737
"devDependencies": {
38-
"@remix-run/web-fetch": "^4.4.0-pre.0",
38+
"@remix-run/web-fetch": "^4.4.0",
3939
"@types/node": "15.0.2",
4040
"git-validate": "2.2.4",
4141
"husky": "^6.0.0",

packages/fetch/CHANGELOG.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
# Changelog
22

3-
## 4.4.0-pre.0
3+
## 4.4.0
44

55
### Minor Changes
66

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

99
### Patch Changes
1010

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

1717
## 4.3.8
1818

packages/fetch/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/web-fetch",
3-
"version": "4.4.0-pre.0",
3+
"version": "4.4.0",
44
"description": "Web API compatible fetch implementation",
55
"main": "./dist/lib.node.cjs",
66
"module": "./src/lib.node.js",
@@ -99,9 +99,9 @@
9999
"xo": "^0.33.1"
100100
},
101101
"dependencies": {
102-
"@remix-run/web-file": "^3.1.0-pre.0",
103-
"@remix-run/web-form-data": "^3.1.0-pre.0",
104-
"@remix-run/web-stream": "^1.1.0-pre.0",
102+
"@remix-run/web-file": "^3.1.0",
103+
"@remix-run/web-form-data": "^3.1.0",
104+
"@remix-run/web-stream": "^1.1.0",
105105
"@web3-storage/multipart-parser": "^1.0.0",
106106
"abort-controller": "^3.0.0",
107107
"data-uri-to-buffer": "^3.0.1",

packages/file/CHANGELOG.md

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

3+
## 3.1.0
4+
5+
### Minor Changes
6+
7+
- Export CJS version for browser ([807fc63](https://github.com/remix-run/web-std-io/commit/807fc63))
8+
9+
### Patch Changes
10+
11+
- Updated dependencies
12+
- `@remix-run/[email protected]`
13+
314
## 3.1.0-pre.0
415

516
### Minor Changes

packages/file/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/web-file",
3-
"version": "3.1.0-pre.0",
3+
"version": "3.1.0",
44
"description": "Web API compatible File implementation for node",
55
"files": [
66
"src",
@@ -33,13 +33,13 @@
3333
}
3434
},
3535
"dependencies": {
36-
"@remix-run/web-blob": "^3.1.0-pre.0"
36+
"@remix-run/web-blob": "^3.1.0"
3737
},
3838
"author": "Irakli Gozalishvili <[email protected]> (https://gozala.io)",
3939
"repository": "https://github.com/remix-run/web-std-io",
4040
"license": "MIT",
4141
"devDependencies": {
42-
"@remix-run/web-fetch": "^4.4.0-pre.0",
42+
"@remix-run/web-fetch": "^4.4.0",
4343
"@types/node": "15.0.2",
4444
"git-validate": "2.2.4",
4545
"husky": "^6.0.0",

packages/form-data/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changelog
22

3-
## 3.1.0-pre.0
3+
## 3.1.0
44

55
### Minor Changes
66

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

99
## 3.0.5
1010

packages/form-data/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/web-form-data",
3-
"version": "3.1.0-pre.0",
3+
"version": "3.1.0",
44
"description": "Web API compatible Form Data implementation",
55
"files": [
66
"src",
@@ -37,9 +37,9 @@
3737
"repository": "https://github.com/remix-run/web-std-io",
3838
"license": "MIT",
3939
"devDependencies": {
40-
"@remix-run/web-blob": "^3.1.0-pre.0",
41-
"@remix-run/web-fetch": "^4.4.0-pre.0",
42-
"@remix-run/web-file": "^3.1.0-pre.0",
40+
"@remix-run/web-blob": "^3.1.0",
41+
"@remix-run/web-fetch": "^4.4.0",
42+
"@remix-run/web-file": "^3.1.0",
4343
"@types/node": "15.0.2",
4444
"git-validate": "2.2.4",
4545
"husky": "^6.0.0",

packages/stream/CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Changelog
22

3-
## 1.1.0-pre.0
3+
## 1.1.0
44

55
### Minor Changes
66

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

99
## 1.0.4
1010

packages/stream/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@remix-run/web-stream",
3-
"version": "1.1.0-pre.0",
3+
"version": "1.1.0",
44
"description": "Web API compatible streams for node/web",
55
"files": [
66
"src",

0 commit comments

Comments
 (0)