-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
053f687
commit 6c10a33
Showing
4 changed files
with
10 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,5 @@ build/ | |
dist/ | ||
sdist/ | ||
*.egg-info/ | ||
venv*/ | ||
.pytest* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
0.3 | ||
=== | ||
- Add a man page (contribution by @ssgelm) | ||
- Split `sendmail` command on whitespace (contribution by @nottwo) | ||
- Fix a ton of bugs with MIME tree construction | ||
- fix tests |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
version_info = (0, 2) | ||
version_info = (0, 3) | ||
__version__ = '.'.join(map(str, version_info)) | ||
__author__ = 'James Brown <[email protected]>' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
setup( | ||
name="muttdown", | ||
version="0.2", | ||
version="0.3", | ||
author="James Brown", | ||
author_email="[email protected]", | ||
url="https://github.com/Roguelazer/muttdown", | ||
|