Changing version number

This commit is contained in:
Yusur 2019-10-16 19:06:09 +02:00
parent 313c001a63
commit 156d58e549
3 changed files with 5 additions and 2 deletions

1
.gitignore vendored
View file

@ -1,4 +1,5 @@
coriplus.sqlite coriplus.sqlite
coriplus-*.sqlite
__pycache__/ __pycache__/
uploads/ uploads/
*.pyc *.pyc

View file

@ -1,6 +1,8 @@
# Changelog # Changelog
## 0.5-dev ## 0.6-dev
## 0.5.0
* Removed `type` and `info` fields from `Message` table and merged `privacy` field, previously into a separate table, into that table. In order to make the app work, when upgrading you should run the `migrate_0_4_to_0_5.py` script. * Removed `type` and `info` fields from `Message` table and merged `privacy` field, previously into a separate table, into that table. In order to make the app work, when upgrading you should run the `migrate_0_4_to_0_5.py` script.
* Added flask-login dependency. Now, user logins can be persistent up to 365 days. * Added flask-login dependency. Now, user logins can be persistent up to 365 days.

2
app.py
View file

@ -8,7 +8,7 @@ from functools import wraps
import argparse import argparse
from flask_login import LoginManager, login_user, logout_user, login_required from flask_login import LoginManager, login_user, logout_user, login_required
__version__ = '0.5-dev' __version__ = '0.6-dev'
# we want to support Python 3 only. # we want to support Python 3 only.
# Python 2 has too many caveats. # Python 2 has too many caveats.