Skip to content

Commit

Permalink
feat: 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Zekfad committed Feb 23, 2023
1 parent cd3d933 commit 51dcbc6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## 1.0.0

- Public stable release.
- Bumped `js` to 0.6.7.

## 1.0.0-dev.5

- **BREAKING**: Renamed `RequestInit` to `FetchOptions`.
Expand All @@ -10,7 +15,7 @@
`ReadableStream`s, that is required for request streaming.
- Added `ReadableStreamDefaultController`.
- Added `ReadableStreamSource` class that helps you to create custom source
for `ReadableStream`s. It can be created from Dart's`Stream`.
for `ReadableStream`s. It can be created from Dart's `Stream`.
- Added `RequestCache`.
- Added `RequestDestination`.
- Added missing options to `RequestMode` and added docs.
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
# Fetch API.
# Fetch API

> Some methods are working only with Dart 3.0, see
> [compatibility_layer](lib/compatibility_layer.dart) for more info.
> [compatibility_layer](https://pub.dev/documentation/fetch_api/latest/fetch_api.compatibility_layer/fetch_api.compatibility_layer-library.html)
> library for more info.
This package provides JavaScript bindings to
[Fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API).
Expand Down
8 changes: 4 additions & 4 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: fetch_api
description: JavaScript bindings for Fetch API, allowing a flexible HTTP requests.
version: 1.0.0-dev.5
description: JavaScript bindings for Fetch API, flexible HTTP requests, redirects, streaming and more.
version: 1.0.0
homepage: https://github.com/Zekfad/fetch_api
repository: https://github.com/Zekfad/fetch_api
issue_tracker: https://github.com/Zekfad/fetch_api/issues
Expand All @@ -10,10 +10,10 @@ platforms:
web:

environment:
sdk: '>=2.19.0-0 <4.0.0'
sdk: '>=2.19.0 <4.0.0'

dependencies:
js: ^0.6.5
js: ^0.6.7

dev_dependencies:
build_runner: '>=2.3.3'
Expand Down

0 comments on commit 51dcbc6

Please sign in to comment.