Skip to content

Commit

Permalink
fix: base url fixed and version bumped
Browse files Browse the repository at this point in the history
  • Loading branch information
slimpotatoboy committed Sep 20, 2023
1 parent 5d0b159 commit ff96337
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 1.0.0

- Base Url Updated
## 0.0.1

- Initial Release
Expand Down
2 changes: 1 addition & 1 deletion lib/utils/request_url.dart
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import 'package:http/http.dart' as http;
import 'package:resend/resend.dart';

Future requestUrl(String postBody) async {
Uri url = Uri.parse("https://api.resend.com");
Uri url = Uri.parse("https://api.resend.com/emails");
final response = await http.post(
url,
headers: {
Expand Down
2 changes: 1 addition & 1 deletion pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: resend
description: Dart Package for resend
version: 0.0.2
version: 1.0.0
homepage: https://github.com/slimpotatoboy/resend

environment:
Expand Down

0 comments on commit ff96337

Please sign in to comment.