-
-
Notifications
You must be signed in to change notification settings - Fork 172
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* remove minimal test env * run docs tox env by default * remove setuptools files * add .editorconfig * update .gitignore * update README.md add pallets-eco notice remove install and links * changes in markdown, consistent style * update license * update docs clean up index use furo theme link to references split api into separate page, add notice add license page remove theme folder remove old logo remove make files, use tox env instead * update dev dependencies add typing env * add mypy, pyright, and coverage config * start version 0.10.0
- Loading branch information
Showing
33 changed files
with
563 additions
and
655 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
root = true | ||
|
||
[*] | ||
indent_style = space | ||
indent_size = 4 | ||
insert_final_newline = true | ||
trim_trailing_whitespace = true | ||
end_of_line = lf | ||
charset = utf-8 | ||
max_line_length = 88 | ||
|
||
[*.{css,html,js,json,jsx,scss,ts,tsx,yaml,yml}] | ||
indent_size = 2 |
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
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
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,27 +1,10 @@ | ||
*.py[co] | ||
|
||
# Packages | ||
*.egg | ||
*.egg-info | ||
dist | ||
*build | ||
eggs | ||
parts | ||
bin | ||
var | ||
sdist | ||
develop-eggs | ||
.installed.cfg | ||
|
||
# Installer logs | ||
pip-log.txt | ||
|
||
# Unit test / coverage reports | ||
.coverage | ||
.tox | ||
|
||
#Translations | ||
*.mo | ||
|
||
#Mr Developer | ||
.mr.developer.cfg | ||
.idea/ | ||
.vscode/ | ||
.venv*/ | ||
venv*/ | ||
__pycache__/ | ||
dist/ | ||
.coverage* | ||
htmlcov/ | ||
.tox/ | ||
docs/_build/ |
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
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,108 @@ | ||
## Version 0.10.0 | ||
|
||
Unreleased | ||
|
||
- Drop support for Python < 3.8. | ||
- Use `pyproject.toml` for packaging metadata. | ||
- Use `flit_core` as build backend. | ||
- Apply code formatting and linting tools. | ||
|
||
|
||
## Version 0.9.1 | ||
|
||
Released 2014-09-28 | ||
|
||
- Add an option for force ASCII file attachments | ||
- Fix `force_text` function | ||
- Fix some Python 3 support regarding email policy. | ||
- Support ESMTP options. | ||
- Fix various Unicode issues related to message attachments, subjects, and | ||
email addresses. | ||
|
||
|
||
## Version 0.9.0 | ||
|
||
Released 2013-06-14 | ||
|
||
- Add initial Python 3 support. | ||
|
||
|
||
## Version 0.8.2 | ||
|
||
Released 2013-04-11 | ||
|
||
- Remove stray `print` statement. | ||
|
||
|
||
## Version 0.8.1 | ||
|
||
Released 2013-04-04 | ||
|
||
- Fix a bug with the new state object. | ||
|
||
|
||
## Version 0.8.0 | ||
|
||
Released 2013-04-03 | ||
|
||
- Fix a bug with duplicate recipients. | ||
- Change configuration options to be less confusing. Update settings accordin | ||
ly: | ||
- `DEFAULT_MAIL_SENDER` is now `MAIL_DEFAULT_SENDER`. | ||
- `DEFAULT_MAX_EMAILS` is now `MAIL_MAX_EMAILS`. | ||
- `MAIL_FAIL_SILENTLY` is no longer used. | ||
- `MAIL_SUPPRESS_SEND` now defaults to `TESTING` setting value. | ||
- General API cleanup as things were happening in a few different places. | ||
|
||
|
||
## Version 0.7.6 | ||
|
||
Released 2013-03-11 | ||
|
||
- Fix bug with cc, and bcc fields not being lists. | ||
|
||
|
||
## Version 0.7.5 | ||
|
||
Released 2013-03-03 | ||
|
||
- Fix bug with non-ascii characters in email address. | ||
- `MAIL_FAIL_SILENTLY` config value defaults to `False`. | ||
- Bcc header no longer set as some mail servers forward it to the recipient. | ||
|
||
|
||
## Version 0.7.4 | ||
|
||
Released 2012-11-20 | ||
|
||
- Allow messages to be sent without a body. | ||
|
||
|
||
## Version 0.7.3 | ||
|
||
Released 2012-09-27 | ||
|
||
- Add `extra_headers` to `Message` class. | ||
|
||
|
||
## Version 0.7.2 | ||
|
||
Released 2012-09-16 | ||
|
||
- Add `__str__` method to `Message` class. | ||
- Add message character set option which defaults to utf-8. | ||
|
||
|
||
## Version 0.7.1 | ||
|
||
Released 2012-09-05 | ||
|
||
- Date and message ID headers specified. | ||
|
||
|
||
## Version 0.7.0 | ||
|
||
Released 2012-08-29 | ||
|
||
- Initial development by Dan Jacob and Ron DuPlain. Previously there was not a | ||
change log. |
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,28 @@ | ||
BSD 3-Clause License | ||
|
||
Copyright (c) 2010 Pallets | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are met: | ||
|
||
1. Redistributions of source code must retain the above copyright notice, this | ||
list of conditions and the following disclaimer. | ||
|
||
2. Redistributions in binary form must reproduce the above copyright notice, | ||
this list of conditions and the following disclaimer in the documentation | ||
and/or other materials provided with the distribution. | ||
|
||
3. Neither the name of the copyright holder nor the names of its | ||
contributors may be used to endorse or promote products derived from | ||
this software without specific prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE | ||
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE | ||
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL | ||
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR | ||
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, | ||
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.