From 0ca1dc36f848d1308063b691ada64083cd7592ac Mon Sep 17 00:00:00 2001 From: Marko Ristin Date: Wed, 12 May 2021 11:23:51 +0200 Subject: [PATCH] Bumped to 1.2.0 * Ignore not-indented ldd output (#14) * Added handling of static libraries (#13) --- CHANGELOG.rst | 5 +++++ pylddwrap_meta.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index a95dc85..2f71fae 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,8 @@ +1.2.0 +===== +* Ignore not-indented ldd output (#14) +* Added handling of static libraries (#13) + 1.1.0 ===== * Added ``--sorted`` command-line option diff --git a/pylddwrap_meta.py b/pylddwrap_meta.py index 9eaaab4..a237148 100644 --- a/pylddwrap_meta.py +++ b/pylddwrap_meta.py @@ -4,7 +4,7 @@ __title__ = 'pylddwrap' __description__ = 'Wrap ldd *nix utility to determine shared libraries required by a program.' __url__ = 'https://github.com/Parquery/lddwrap' -__version__ = '1.1.0' # don't forget to update the changelog! +__version__ = '1.2.0' # don't forget to update the changelog! __author__ = 'Selim Naji, Adam Radomski and Marko Ristin' __author_email__ = 'selim.naji@parquery.com, adam.radomski@parquery.com, marko.ristin@gmail.com' __license__ = 'MIT'