diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 833db61c..66599eb4 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.3.1 +current_version = 1.3.2 commit = True tag = True message = Bump version: {current_version} -> {new_version} diff --git a/CHANGELOG.md b/CHANGELOG.md index ee556b11..19f07b14 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.3.2] - 2023-10-07 +### Fixed +- Fix metadata store to be a list + ## [1.3.1] - 2023-10-07 ### Fixed - Add missing import diff --git a/LnkParse3/lnk_file.py b/LnkParse3/lnk_file.py index f1eb2dfb..87b56e19 100755 --- a/LnkParse3/lnk_file.py +++ b/LnkParse3/lnk_file.py @@ -2,7 +2,7 @@ __description__ = "Windows Shortcut file (LNK) parser" __author__ = "Matmaus" -__version__ = "1.3.1" +__version__ = "1.3.2" import json import datetime diff --git a/setup.py b/setup.py index b126d67e..577e563a 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ setup( name='LnkParse3', - version='1.3.1', + version='1.3.2', description='Windows Shortcut file (LNK) parser', long_description=long_description, long_description_content_type="text/markdown",