diff --git a/CHANGES.rst b/CHANGES.rst index 2116b225a8a..6f4276c6d57 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -2,6 +2,12 @@ Changes ======= +**2016-10-10** + +*Released 5.1.1* + +- Fix documentation builds on readthedocs + **2016-09-24** *Released 5.1* diff --git a/docs/source/conf.py b/docs/source/conf.py index 62b611b50ce..de5cc4eb088 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -61,7 +61,7 @@ # The short X.Y version. version = '5.1' # telegram.__version__[:3] # The full version, including alpha/beta/rc tags. -release = '5.1.0' # telegram.__version__ +release = '5.1.1' # 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 7c54e624d2d..53d832b8957 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.1.1'