From 0d749eb5f17753d0b1f93557f89b12d5ab98f877 Mon Sep 17 00:00:00 2001 From: Dave Martorana Date: Tue, 10 Jun 2014 15:05:05 -0400 Subject: [PATCH] Update changelog to reflect removal of content_subtype requirement in Django backend --- CHANGELOG.md | 1 + LICENSE | 20 -------------------- README.md | 3 ++- 3 files changed, 3 insertions(+), 21 deletions(-) delete mode 100644 LICENSE diff --git a/CHANGELOG.md b/CHANGELOG.md index 96aadd6..163adf5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,7 @@ Version 0.4.2 - Added in .track_opens to support open tracking See: http://developer.postmarkapp.com/developer-build.html#open-tracking - Added POSTMARK_TRACK_OPENS setting to the Django backend (danxshap) +- Don't require `content_subtype` in Django backend to be set to `"html"` (danxshap) Version 0.4.1 -------------- diff --git a/LICENSE b/LICENSE deleted file mode 100644 index a2ae299..0000000 --- a/LICENSE +++ /dev/null @@ -1,20 +0,0 @@ -Copyright (C) 2013, David Martorana - -Permission is hereby granted, free of charge, to any person obtaining a -copy of this software and associated documentation files (the "Software"), -to deal in the Software without restriction, including without limitation -the rights to use, copy, modify, merge, publish, distribute, sublicense, -and/or sell copies of the Software, and to permit persons to whom the -Software is furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL -THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING -FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER -DEALINGS IN THE SOFTWARE. - diff --git a/README.md b/README.md index 8ff017e..ad989eb 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,8 @@ Changelog Version 0.4.2 - Added in .track_opens to support open tracking See: http://developer.postmarkapp.com/developer-build.html#open-tracking -- Added POSTMARK_TRACK_OPENS setting to the Django backend (danxshap) +- Added `POSTMARK_TRACK_OPENS` setting to the Django backend (danxshap) +- Don't require `content_subtype` in Django backend to be set to `"html"` (danxshap) Version 0.4.1 - Merged proper handling of content_subtype in the Django backend - thanks Josh Owen!