Skip to content

Commit

Permalink
bump to v0.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Roguelazer committed Sep 16, 2020
1 parent 5aeb514 commit 824abb1
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
@@ -1,10 +1,10 @@
language: python
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
- "3.8"
install:
- "pip install -r requirements-tests.txt"
- "pip install ."
Expand Down
6 changes: 6 additions & 0 deletions CHANGES.md
@@ -1,3 +1,9 @@
0.3.5
=====
- Fix some unicode handling (including, hopefully, fixing non-ASCII subject lines for real)
- Drops support for Python 3.3 and Python 3.4 since we depend on libraries that have dropped support for them
- Add support for Python 3.7 and Python 3.8

0.3.4
=====
- Fix regression in headers from 0.3.0 with some multipart/signed messages
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -60,7 +60,7 @@ Muttdown can also send its mail using the native `sendmail` if you have that set

Installation
------------
Install muttdown with `pip install muttdown` or by downloading this package and running `python setup.py install`. You will need the [PyYAML][] and [Python-Markdown][] libraries, as specified in `requirements.txt`.
Install muttdown with `pip install muttdown` or by downloading this package and running `python setup.py install`. You will need the [PyYAML][] and [Python-Markdown][] libraries, as specified in `requirements.txt`. This should work with Python 2.7 or Python 3.5+.

Usage
-----
Expand Down
2 changes: 1 addition & 1 deletion muttdown/__init__.py
@@ -1,3 +1,3 @@
version_info = (0, 3, 4)
version_info = (0, 3, 5)
__version__ = '.'.join(map(str, version_info))
__author__ = 'James Brown <Roguelazer@gmail.com>'
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -7,7 +7,7 @@

setup(
name="muttdown",
version="0.3.4",
version="0.3.5",
author="James Brown",
author_email="Roguelazer@gmail.com",
url="https://github.com/Roguelazer/muttdown",
Expand All @@ -33,11 +33,10 @@
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Intended Audience :: End Users/Desktop",
"Operating System :: OS Independent",
"License :: OSI Approved :: ISC License (ISCL)",
Expand Down

0 comments on commit 824abb1

Please sign in to comment.