From 57bde97af3ccbab8113128ed2cb5c92d6135675b Mon Sep 17 00:00:00 2001 From: Zach Merritt Date: Wed, 31 May 2023 14:38:36 -0700 Subject: [PATCH] ## [1.0.0] - 2023/05/31 * Requires Dart 3.0 or later * Updated to http ^1.0.0 --- CHANGELOG.md | 5 +++++ analysis_options.yaml | 1 - example/pubspec.lock | 8 ++++---- example/pubspec.yaml | 2 +- pubspec.lock | 4 ++-- pubspec.yaml | 6 +++--- 6 files changed, 15 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d235da..d38dab3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## [1.0.0] - 2023/05/31 + +* Requires Dart 3.0 or later +* Updated to http ^1.0.0 + ## [0.5.0] - 2023/05/31 * Updated `intl` to new version diff --git a/analysis_options.yaml b/analysis_options.yaml index 565e508..d0b06aa 100644 --- a/analysis_options.yaml +++ b/analysis_options.yaml @@ -99,7 +99,6 @@ linter: - prefer_const_literals_to_create_immutables - prefer_constructors_over_static_methods - prefer_contains - - prefer_equal_for_default_values - prefer_final_fields - prefer_final_in_for_each - prefer_final_locals diff --git a/example/pubspec.lock b/example/pubspec.lock index 755d9e0..fa42da3 100644 --- a/example/pubspec.lock +++ b/example/pubspec.lock @@ -13,10 +13,10 @@ packages: dependency: "direct main" description: name: aws_request - sha256: e255fb772aa0dcf9ed6fe4d90f28884264ad784eaa71df4ab3deee75082222cd + sha256: "0f396eae706a8997a9d886f8241fe4afc670430f64b50c2752d6211c0e260ea6" url: "https://pub.dev" source: hosted - version: "0.4.0" + version: "0.5.0" boolean_selector: dependency: transitive description: @@ -95,10 +95,10 @@ packages: dependency: transitive description: name: intl - sha256: "910f85bce16fb5c6f614e117efa303e85a1731bb0081edf3604a2ae6e9a3cc91" + sha256: "3bc132a9dbce73a7e4a21a17d06e1878839ffbf975568bc875c60537824b0c4d" url: "https://pub.dev" source: hosted - version: "0.17.0" + version: "0.18.1" js: dependency: transitive description: diff --git a/example/pubspec.yaml b/example/pubspec.yaml index a8f02bb..f58ae20 100644 --- a/example/pubspec.yaml +++ b/example/pubspec.yaml @@ -9,7 +9,7 @@ dependencies: flutter: sdk: flutter - aws_request: 0.4.0 + aws_request: 0.5.0 http: ^0.13.0 dev_dependencies: diff --git a/pubspec.lock b/pubspec.lock index 4f7762e..5d5585e 100644 --- a/pubspec.lock +++ b/pubspec.lock @@ -109,10 +109,10 @@ packages: dependency: "direct main" description: name: http - sha256: "5895291c13fa8a3bd82e76d5627f69e0d85ca6a30dcac95c4ea19a5d555879c2" + sha256: "4c3f04bfb64d3efd508d06b41b825542f08122d30bda4933fb95c069d22a4fa3" url: "https://pub.dev" source: hosted - version: "0.13.6" + version: "1.0.0" http_multi_server: dependency: transitive description: diff --git a/pubspec.yaml b/pubspec.yaml index a135146..413fbc9 100644 --- a/pubspec.yaml +++ b/pubspec.yaml @@ -1,16 +1,16 @@ name: aws_request description: Easily create, sign, and send API requests to AWS services without the hassle of implementing Signature Version 4. -version: 0.5.0 +version: 1.0.0 homepage: https://github.com/Zsmerritt/Flutter_AWS_Request environment: - sdk: '>=2.12.0 <3.0.0' + sdk: '>=3.0.0 <4.0.0' dependencies: intl: ^0.18.0 # Date Formatting crypto: ^3.0.0 # Key Signing - http: ^0.13.0 # Send requests + http: ^1.0.0 # Send requests dev_dependencies: test: ^1.24.0 \ No newline at end of file