Preparing for release

This commit is contained in:
Yusur 2019-10-20 20:48:18 +02:00
parent 635e3eaa2d
commit 1e7787e24e
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
# Changelog # Changelog
## 0.6-dev ## 0.6.0
* Added user adminship. Admins are users with very high privileges. Adminship can be assigned only at script level (not from the web). * Added user adminship. Admins are users with very high privileges. Adminship can be assigned only at script level (not from the web).
* Now one's messages won't show up in public timeline. * Now one's messages won't show up in public timeline.

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.6-dev' __version__ = '0.6.0'
# 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.