Skip to content

Commit

Permalink
v2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
msztolcman committed Oct 3, 2020
1 parent c9ac80e commit 7825679
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ If you like this tool, just [say thanks](https://saythanks.io/to/marcin%40urzeni
Current stable version
----------------------

1.0.0
2.0.0

Features
--------
Expand Down Expand Up @@ -211,6 +211,10 @@ If you find bug or have an idea to enhance this tool, please use GitHub's
ChangeLog
---------

### v2.0.0

* rename MailTrap -> Sendria

### v1.0.0

* complete rewrite of backend part. Sendria is using [asyncio](https://docs.python.org/3/library/asyncio.html) and
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0.0
2.0.0
2 changes: 1 addition & 1 deletion sendria/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import pathlib
import pkgutil

__version__ = '1.0.0'
__version__ = '2.0.0'
ROOT_DIR = pathlib.Path(pkgutil.get_loader('sendria').get_filename()).parent
STATIC_DIR = ROOT_DIR / 'static'
TEMPLATES_DIR = ROOT_DIR / 'templates'
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def _build_assets(self):

setup(
name='sendria',
version='1.0.0',
version='2.0.0',
description='An SMTP server that makes all received mails accessible via a web interface and REST API.',
long_description=readme,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 7825679

Please sign in to comment.