Skip to content

Commit

Permalink
Bump to 0.4.5, add mflaxman as contributor
Browse files Browse the repository at this point in the history
  • Loading branch information
themartorana committed Jan 6, 2015
1 parent 7ee8f65 commit b30a7ec
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 22 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
CHANGELOG for python-postmark
===============================

Version 0.4.5
-------------
- Fix for Python 3 support (issue #42, PR #43) (mflaxman)

Version 0.4.4
-------------
- Minor code cleanup (Stranger6667)
Expand Down
1 change: 1 addition & 0 deletions CONTRIBUTORS.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,6 @@ Everyone that made python-postmark awesome
- Ryan Duffield (https://github.com/rduffield)
- Dmitry Dygalo (https://github.com/Stranger6667)
- catskul (https://github.com/catskul)
- Michael Flaxman (https://github.com/mflaxman)

(Did I miss anyone?)
12 changes: 4 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
python-postmark library for [Postmark](http://postmarkapp.com)
================================================================

Supports Python 2.6 and greater, including 3.x.
Supports Python 2.7 and greater, including 3.x.

Includes:

Expand All @@ -17,6 +17,9 @@ See [CONTRIBUTORS.md](https://github.com/themartorana/python-postmark/blob/maste
Changelog
----------

Version 0.4.5
- Fix for Python 3 support (issue #42, PR #43) (mflaxman)

Version 0.4.4
- Minor code cleanup (Stranger6667)
- Fix for Django 1.5+ ugettext_lazy strings being improperly converted (#11, #41) (justinabrahms, rduffield)
Expand All @@ -31,13 +34,6 @@ Version 0.4.2
- 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!

Version 0.4.0
- Merged in Python 3 support - thanks Jacob!
- Moving minimum python version to 2.6. If you need 2.4 support, please continue to use v0.3.2!

*[See full changelog](https://github.com/themartorana/python-postmark/blob/master/CHANGELOG.md)*


Expand Down
6 changes: 2 additions & 4 deletions postmark/__init__.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
__version__ = '0.4.4'
__version__ = '0.4.5'
__author__ = "Dave Martorana (http://davemartorana.com), Richard Cooper (http://frozenskys.com), Bill Jones (oraclebill), Dmitry Golomidov (deeGraYve)"
__date__ = '2010-April-14'
__url__ = 'http://postmarkapp.com'
__copyright__ = "(C) 2009-2014 David Martorana, Wildbit LLC, Python Software Foundation."
__contributors__ = "Dave Martorana (themartorana), Bill Jones (oraclebill), Richard Cooper (frozenskys), Miguel Araujo (maraujop), Patrick Lauber (digi604), Brian McFadden (brimcfadden), Joel Ryan (joelryan2k), Ben Hodgson (benhodgson), Dmitry Golomidov (deeGraYve), Jacob (nephics)"
__copyright__ = "(C) 2009-2015 David Martorana, Wildbit LLC, Python Software Foundation."

__doc__ = '''
Expand All @@ -12,7 +11,6 @@
Version: ''' + __version__ + '''
Author: ''' + __author__ + '''
Last Updated: ''' + __date__ + '''
Contributors: ''' + __contributors__ + '''
USEAGE:
Make sure you have a Postmark account. Visit
Expand Down
3 changes: 1 addition & 2 deletions postmark/core.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
__version__ = '0.4.4'
__version__ = '0.4.5'
__author__ = "Dave Martorana (http://davemartorana.com), Richard Cooper (http://frozenskys.com), Bill Jones (oraclebill), Dmitry Golomidov (deeGraYve)"
__date__ = '2010-April-14'
__url__ = 'http://postmarkapp.com'
__copyright__ = "(C) 2009-2014 David Martorana, Wildbit LLC, Python Software Foundation."
__contributors__ = "Dave Martorana (themartorana), Bill Jones (oraclebill), Richard Cooper (frozenskys), Miguel Araujo (maraujop), Patrick Lauber (digi604), Brian McFadden (brimcfadden), Joel Ryan (joelryan2k), Ben Hodgson (benhodgson), Dmitry Golomidov (deeGraYve)"

#
# Imports (JSON library based on import try)
Expand Down
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
from distutils.core import setup

setup(
name = "python-postmark",
version = "0.4.4",
packages = ['postmark'],
author = "Dave Martorana (http://davemartorana.com), Richard Cooper (http://frozenskys.com), Bill Jones (oraclebill), Dmitry Golomidov (deeGraYve)",
license = 'BSD',
description = "Postmark library for Python 2.6 and greater.",
long_description = "Note: To use Python 2.4 or 2.5, please use python-postmark version 0.3.2",
url = "http://github.com/themartorana/python-postmark",
name="python-postmark",
version="0.4.5",
packages=['postmark'],
author="Dave Martorana (http://davemartorana.com), Richard Cooper (http://frozenskys.com), Bill Jones (oraclebill), Dmitry Golomidov (deeGraYve)",
license='BSD',
description="Postmark library for Python 2.7 and greater.",
long_description="Note: To use Python 2.4 or 2.5, please use python-postmark version 0.3.2. Python 2.6 use version 0.4.4.",
url="http://github.com/themartorana/python-postmark",
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand Down

0 comments on commit b30a7ec

Please sign in to comment.