Skip to content

Commit

Permalink
Bump version to v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mprahl committed Mar 15, 2017
1 parent c892909 commit de8ac4a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions docs/ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
### Unreleased
### v1.2.0 - Rubber Soul

BACKWARDS INCOMPATIBILITIES / NOTES:

* The default MySQL Python connector of "mysqlclient" has been replaced with "pymysql" for a pure Python replacement.
Upgrades will be unaffected by this, but please note that reinstalls will require you to either install "mysqlclient"
([Ubuntu Instructions](https://github.com/PyMySQL/mysqlclient-python#install) or change the start of your database URI
with "mysql+pymysql://" instead of "mysql://" [GH-170].
with "mysql+pymysql://" instead of "mysql://" [GH-170]

Features:

* Supports Two-Factor Authentication on the backend [GH-169]

Improvements:

* Replaced GIF spinner with a pure CSS spinner using CSS3 animations [GH-177].
* Replaced GIF spinner with a pure CSS spinner using CSS3 animations [GH-177]
* Adds Python 3.5 support [GH-179] [GH-180]
* Update Python dependencies when updating PostMaster using the deb package (apt-get) [GH-185]

Bug Fixes:

Expand Down
2 changes: 1 addition & 1 deletion postmaster/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from flask_login import LoginManager
from flask_bcrypt import Bcrypt

__version__ = 'v1.1.0.0'
__version__ = 'v1.2.0.0'
app = Flask(__name__)

if environ.get('POSTMASTER_DEV') == 'TRUE':
Expand Down

0 comments on commit de8ac4a

Please sign in to comment.