diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 5b5a7bc..1079156 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,11 @@ Changelog dev --- +* - + +0.5.2 (2017-07-26) +------------------ + * Added a `setup.py` check that the user runs at least the minimal required Python version (Python 3.3). This makes `pip` raise a helpful error message instead of a meaningless exception. diff --git a/README.rst b/README.rst index 2d5156d..7a3c6c0 100644 --- a/README.rst +++ b/README.rst @@ -107,7 +107,7 @@ Documentation The documentation is available on `readthedocs.io `_: * `latest (master) `_ -* `stable (0.5.1) `_ +* `stable (0.5.2) `_ Contact and Support ------------------- diff --git a/retdec/__init__.py b/retdec/__init__.py index ba1861b..12d8226 100644 --- a/retdec/__init__.py +++ b/retdec/__init__.py @@ -9,7 +9,7 @@ `REST API `_. """ -__version__ = '0.5.2-dev' +__version__ = '0.5.2' #: Default API URL. DEFAULT_API_URL = 'https://retdec.com/service/api'