From 8cbfde93f5a3d61710cc19b6902d615491e67855 Mon Sep 17 00:00:00 2001 From: Petr Zemek Date: Thu, 15 Sep 2016 17:30:26 +0200 Subject: [PATCH] Release version 0.5. --- 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 7168b98..bf3987d 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,11 @@ Changelog dev --- +* - + +0.5 (2016-09-15) +---------------- + * Added support for decompilation of files in archives (`ar` format). Archives are statically linked libraries, commonly ending with `.a` or `.lib`. To decompile a file from an archive, use the `bin` mode and pass either the diff --git a/README.rst b/README.rst index ad69a19..af5827e 100644 --- a/README.rst +++ b/README.rst @@ -107,7 +107,7 @@ Documentation The documentation is available on `readthedocs.io `_: * `latest (master) `_ -* `stable (0.4) `_ +* `stable (0.5) `_ Contact and Support ------------------- diff --git a/retdec/__init__.py b/retdec/__init__.py index c55be4d..a79621a 100644 --- a/retdec/__init__.py +++ b/retdec/__init__.py @@ -9,7 +9,7 @@ `REST API `_. """ -__version__ = '0.5-dev' +__version__ = '0.5' #: Default API URL. DEFAULT_API_URL = 'https://retdec.com/service/api'