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__ = 'http://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'