From 98a655eb9bffeed6aa8ec556356422eebd09c7ab Mon Sep 17 00:00:00 2001 From: Matt Simerson Date: Tue, 17 Nov 2020 16:29:46 -0800 Subject: [PATCH] version bump (#50) --- Changes.md | 3 ++- README.md | 8 +++----- package.json | 5 +++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Changes.md b/Changes.md index 55311b0..7b9373e 100644 --- a/Changes.md +++ b/Changes.md @@ -1,8 +1,9 @@ -## 2.0.6 - 2020-11-DD +## 2.0.6 - 2020-11-17 - replace travis/appveyor CI tests with Github Actions - test: when splitting lines, use os.EOL +- allow @ symbol in display name #47 ## 2.0.5 - 2020-06-02 diff --git a/README.md b/README.md index 2bfe0ff..c1ea226 100644 --- a/README.md +++ b/README.md @@ -7,16 +7,16 @@ address-rfc2822 ================== -Parser for RFC2822 (Header) format email addresses. +Parser for RFC 2822 & 5322 (Header) format email addresses. -This module parses RFC2822 headers containing addresses such as From, To, CC, and Bcc headers. +This module parses RFC 2822 headers containing addresses such as From, To, CC, and BCC headers. It is almost a direct port of the perl module Mail::Address and I'm grateful to the original authors of that module for the clean code and the tests. Installation ------------ - npm install address-rfc2822 +`npm install address-rfc2822` Usage ----- @@ -44,8 +44,6 @@ This module is MIT licensed. [ci-url]: https://github.com/haraka/node-address-rfc2822/actions?query=workflow%3A%22Unix+Tests%22 [ci-win-img]: https://github.com/haraka/node-address-rfc2822/workflows/Tests%20-%20Windows/badge.svg [ci-win-url]: https://github.com/haraka/node-address-rfc2822/actions?query=workflow%3A%22Tests+-+Windows%22 -[dep-img]: https://david-dm.org/haraka/node-address-rfc2822.svg -[dep-url]: https://david-dm.org/haraka/node-address-rfc2822 [cov-img]: https://codecov.io/github/haraka/node-address-rfc2822/coverage.svg [cov-url]: https://codecov.io/github/haraka/node-address-rfc2822?branch=master [clim-img]: https://codeclimate.com/github/haraka/haraka-plugin-template/badges/gpa.svg diff --git a/package.json b/package.json index 5823f49..929965f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "address-rfc2822", - "version": "2.0.5", - "description": "RFC 2822 (Header) email address parser", + "version": "2.0.6", + "description": "RFC 2822 & 5322 (Header) email address parser", "main": "index.js", "homepage": "https://github.com/haraka/node-address-rfc2822", "keywords": [ @@ -9,6 +9,7 @@ "address", "rfc822", "rfc2822", + "rfc5322", "mail", "from" ],