Bump version to v5.2.0

This commit is contained in:
Jannes Höke 2016-10-25 20:10:36 +02:00
parent 3f30f74024
commit 2786252a51
3 changed files with 13 additions and 3 deletions

View file

@ -2,6 +2,16 @@
Changes
=======
**2016-10-25**
*Released 5.2*
- Implement API changes of October 3rd (games update)
- Add ``Message.edit_*`` methods
- Filters for the ``MessageHandler`` can now be combined using bitwise operators (``& and |``)
- Add a way to save user- and chat-related data temporarily
- Other bugfixes and improvements
**2016-09-24**
*Released 5.1*

View file

@ -59,9 +59,9 @@ author = u'Leandro Toledo'
# built documents.
#
# The short X.Y version.
version = '5.1' # telegram.__version__[:3]
version = '5.2' # telegram.__version__[:3]
# The full version, including alpha/beta/rc tags.
release = '5.1.0' # telegram.__version__
release = '5.2.0' # telegram.__version__
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.

View file

@ -17,4 +17,4 @@
# You should have received a copy of the GNU Lesser Public License
# along with this program. If not, see [http://www.gnu.org/licenses/].
__version__ = '5.1.0'
__version__ = '5.2.0'