Skip to content

Commit

Permalink
## [1.0.0] - 2023/05/31
Browse files Browse the repository at this point in the history
* Requires Dart 3.0 or later
* Updated to http ^1.0.0
  • Loading branch information
Zsmerritt committed May 31, 2023
1 parent 36b43f2 commit 57bde97
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 11 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
1 change: 0 additions & 1 deletion analysis_options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions example/pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion example/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ dependencies:
flutter:
sdk: flutter

aws_request: 0.4.0
aws_request: 0.5.0
http: ^0.13.0

dev_dependencies:
Expand Down
4 changes: 2 additions & 2 deletions pubspec.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 57bde97

Please sign in to comment.