From 51dcbc6f4d822297195928632a14d044f05c094d Mon Sep 17 00:00:00 2001 From: Yaroslav Vorobev Date: Thu, 23 Feb 2023 19:50:55 +0300 Subject: [PATCH] feat: 1.0.0 --- CHANGELOG.md | 7 ++++++- README.md | 5 +++-- pubspec.yaml | 8 ++++---- 3 files changed, 13 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 336e49e..87e52e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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`. @@ -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. diff --git a/README.md b/README.md index bc1af31..71216a8 100644 --- a/README.md +++ b/README.md @@ -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). diff --git a/pubspec.yaml b/pubspec.yaml index f8ffc63..8e51667 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -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 @@ -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'