Skip to content

Commit

Permalink
@types/nodemailer@4.6.5
Browse files Browse the repository at this point in the history
  • Loading branch information
dex4er committed Sep 14, 2018
1 parent c668e25 commit 991fb98
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## v4.1.1 2018-09-14

* Newer typings for `nodemailer` are used.

## v4.1.0 2018-09-12

* Response message is always printable US-ASCII.
Expand Down
2 changes: 1 addition & 1 deletion examples/test-smtp-connection-with-callbacks-ts.ts
Expand Up @@ -32,7 +32,7 @@ function doLogin (err?: SMTPConnection.SMTPError): void {
if (err) {
doClose(err)
} else {
connection.login({ user, pass }, doSend as any) // TODO: wait for new typings
connection.login({ user, pass }, doSend)
}
}

Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "smtp-connection-as-promised",
"version": "4.1.0",
"version": "4.1.1",
"description": "smtp-connection as promised",
"main": "lib/smtp-connection-as-promised.js",
"typings": "lib/smtp-connection-as-promised.d.ts",
Expand Down Expand Up @@ -30,7 +30,7 @@
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.4",
"@types/nodemailer": "^4.6.4",
"@types/nodemailer": "^4.6.5",
"@types/smtp-server": "^3.4.0",
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
Expand Down

0 comments on commit 991fb98

Please sign in to comment.