Skip to content

Commit

Permalink
Updating CHANGELOG.md and version for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
arithmetric committed May 14, 2016
1 parent ec7c967 commit 43c6b68
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 3 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Change Log for aws-lambda-ses-forwarder

## 3.0.0 [2016/5/14]

- Adding capability to specify an email forwarding mapping that acts as a
wildcard or catch-all for a domain.
- Converting the inbound recipient email address to lowercase before comparing
to the forwarding map to handle case variations.
- Updating aws-sdk dependency to match AWS Lambda environment.

### Upgrade Notes

- Email addresses and domain wildcard keys in the `forwardMapping` configuration
object must be lowercase.

## 2.3.0 [2016/4/21]

- Adding configuration option for a static "From" email address.
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# AWS Lambda SES Email Forwarder
## Serverless email forwarding using AWS Lambda and SES

[![npm version](https://badge.fury.io/js/aws-lambda-ses-forwarder.svg)](https://www.npmjs.com/package/aws-lambda-ses-forwarder)
[![Travis CI test status](https://travis-ci.org/arithmetric/aws-lambda-ses-forwarder.svg?branch=master)](https://travis-ci.org/arithmetric/aws-lambda-ses-forwarder)
Expand Down
2 changes: 1 addition & 1 deletion example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"description": "Example implementation of aws-lambda-ses-forwarder.",
"main": "index.js",
"dependencies": {
"aws-lambda-ses-forwarder": "^2.0.0"
"aws-lambda-ses-forwarder": "^3.0.0"
}
}
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"use strict";

console.log("AWS Lambda SES Forwarder // @arithmetric // Version 2.3.0");
console.log("AWS Lambda SES Forwarder // @arithmetric // Version 3.0.0");

// Configure the S3 bucket and key prefix for stored raw emails, and the
// mapping of email addresses to forward from and to.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "aws-lambda-ses-forwarder",
"version": "2.3.0",
"version": "3.0.0",
"description": "An AWS Lambda Node.js script that uses the inbound and outbound capabilities of AWS Simple Email Service (SES) to run a serverless email forwarding service.",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 43c6b68

Please sign in to comment.