Skip to content

Commit 466b646

Browse files
author
Sergey Khomushin
committed
v1.0.0
1 parent d9f7c7d commit 466b646

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
## 1.0.0
2+
* Add support for the private key
3+
* Instead of the public key argument, the settings object is passed, where the public and private keys can be set.
4+
Check out the documentation and examples.
5+
16
## 0.0.3
27
* re-format examples code
38

lib/emailjs.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class EmailJS {
5454
validateParams(pubKey, serviceID, templateID);
5555

5656
final Map<String, dynamic> params = {
57-
'lib_version': '0.0.3',
57+
'lib_version': '1.0.0',
5858
'user_id': pubKey,
5959
'accessToken': prKey,
6060
'service_id': serviceID,

pubspec.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: emailjs
2-
description: EmailJS helps sending emails using client side technologies only. No server is required.
3-
version: 0.0.3
2+
description: EmailJS helps sending emails directly from the Flutter app. No server is required.
3+
version: 1.0.0
44
homepage: https://www.emailjs.com
55
repository: https://github.com/emailjs-com/emailjs-flutter
66

0 commit comments

Comments
 (0)