From aa740d6b6f732b0153f27cf1749dc475e702080b Mon Sep 17 00:00:00 2001 From: Petr Zemek Date: Sat, 24 Sep 2016 13:49:38 +0200 Subject: [PATCH] Release version 0.5.1. --- CHANGELOG.rst | 5 +++++ README.rst | 2 +- retdec/__init__.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 208c735..97246c6 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,11 @@ Changelog dev --- +* - + +0.5.1 (2016-09-24) +------------------ + * Emit a warning instead of an error when a call graph, control-flow graph, or archive fails to be generated. This makes the ``decompiler`` tool continue downloading all the requested outputs instead of giving up on the first diff --git a/README.rst b/README.rst index af5827e..30232fc 100644 --- a/README.rst +++ b/README.rst @@ -107,7 +107,7 @@ Documentation The documentation is available on `readthedocs.io `_: * `latest (master) `_ -* `stable (0.5) `_ +* `stable (0.5.1) `_ Contact and Support ------------------- diff --git a/retdec/__init__.py b/retdec/__init__.py index 777f61c..1ef8703 100644 --- a/retdec/__init__.py +++ b/retdec/__init__.py @@ -9,7 +9,7 @@ `REST API `_. """ -__version__ = '0.5.1-dev' +__version__ = '0.5.1' #: Default API URL. DEFAULT_API_URL = 'https://retdec.com/service/api'