Skip to content

Commit f61ee01

Browse files
committed
bumped minor patch
1 parent 5dbcbb9 commit f61ee01

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

CHANGELOG.md

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
66
project adheres to [Semantic Versioning](http://semver.org/).
77

8-
(Unreleased)
9-
==================
10-
### Removed
11-
-
12-
### Changed
13-
-
14-
### Added
15-
-
16-
### Fixed
8+
## v3.1.3
179
- Allow usage of iterable object in Blob constructor. [#108]
1810
- Run test WPT test against our impl [#109]
1911
- File name are now casted to string [#109]
@@ -23,7 +15,6 @@ project adheres to [Semantic Versioning](http://semver.org/).
2315
- Suppress warning when importing `stream/web` [#114]
2416

2517
## v3.1.2
26-
2718
- Improved typing
2819
- Fixed a bug where position in iterator did not increase
2920

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "fetch-blob",
3-
"version": "3.1.2",
3+
"version": "3.1.3",
44
"description": "Blob & File implementation in Node.js, originally from node-fetch.",
55
"main": "index.js",
66
"type": "module",
@@ -14,9 +14,8 @@
1414
"streams.cjs"
1515
],
1616
"scripts": {
17-
"lint": "xo test.js",
1817
"test-wpt": "node --experimental-loader ./test/http-loader.js ./test/test-wpt-in-node.js",
19-
"test": "npm run lint && ava test.js",
18+
"test": "ava test.js",
2019
"report": "c8 --reporter json --reporter text ava test.js",
2120
"coverage": "c8 --reporter json --reporter text ava test.js && codecov -f coverage/coverage-final.json",
2221
"prepublishOnly": "tsc --declaration --emitDeclarationOnly --allowJs index.js from.js"

0 commit comments

Comments
 (0)