From de8ac4ab42da2c6044c5ef05cd755244a544e9e8 Mon Sep 17 00:00:00 2001 From: mprahl Date: Sun, 12 Mar 2017 19:08:35 -0400 Subject: [PATCH] Bump version to v1.2.0 --- docs/ChangeLog.md | 7 ++++--- postmaster/__init__.py | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/ChangeLog.md b/docs/ChangeLog.md index d193533..4ab0583 100644 --- a/docs/ChangeLog.md +++ b/docs/ChangeLog.md @@ -1,11 +1,11 @@ -### 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: @@ -13,8 +13,9 @@ Features: 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: diff --git a/postmaster/__init__.py b/postmaster/__init__.py index 5551f57..640df22 100644 --- a/postmaster/__init__.py +++ b/postmaster/__init__.py @@ -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':