diff --git a/CHANGELOG.md b/CHANGELOG.md index 15241b30..ceb05052 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines. +### [1.0.2](https://github.com/react-native-community/fetch/compare/v1.0.1...v1.0.2) (2021-01-31) + + +### Bug Fixes + +* do not abort native request if none was made yet ([3cc8669](https://github.com/react-native-community/fetch/commit/3cc8669c9ed016e115e820a959b3015ed7bdab0d)) +* implement Response.body for each input body type ([0eec6f4](https://github.com/react-native-community/fetch/commit/0eec6f49e2f01c9e528db3c6318406d9cc2fa833)) + ### [1.0.1](https://github.com/react-native-community/fetch/compare/v1.0.0...v1.0.1) (2021-01-25) diff --git a/package-lock.json b/package-lock.json index 02d3705b..60f2a6ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "react-native-fetch-api", - "version": "1.0.1", + "version": "1.0.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index bfc8536e..5228223f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "react-native-fetch-api", "description": "A fetch API polyfill for React Native with text streaming support.", - "version": "1.0.1", + "version": "1.0.2", "main": "fetch.js", "author": { "name": "André Costa Lima",