diff --git a/CHANGES.rst b/CHANGES.rst index 2116b225a..1eedacb0f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -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* diff --git a/docs/source/conf.py b/docs/source/conf.py index 62b611b50..0cee2519c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -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. diff --git a/telegram/version.py b/telegram/version.py index 7c54e624d..d8a6e2d63 100644 --- a/telegram/version.py +++ b/telegram/version.py @@ -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'