Skip to content

Commit

Permalink
Bump version: 1.2.1 -> 1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Matmaus committed Oct 7, 2023
1 parent 4d89bec commit c34340c
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.2.1
current_version = 1.3.0
commit = True
tag = True
message = Bump version: {current_version} -> {new_version}
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.3.0] - 2023-10-07
### Added
- Add support to process `SerializedPropertyValue` property in `METADATA_PROPERTIES_BLOCK`
- Add support to process `IDList` property in `SHELL_ITEM_IDENTIFIER_BLOCK`
### Fixed
- Fix issues in`Local.volume_label_unicode` method
- Catch exception when parsing `StringData`
- Catch exception when detecting a proper Info class (`Local`/`Network`)
- Catch exception when parsing `ExtraData`

## [1.2.1] - 2023-09-08
### Fixed
- Catch possible exception when processing extra_factory data, where a size is reported with no accompanying data (@ddash-ct)
Expand Down
2 changes: 1 addition & 1 deletion LnkParse3/lnk_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__description__ = "Windows Shortcut file (LNK) parser"
__author__ = "Matmaus"
__version__ = "1.2.1"
__version__ = "1.3.0"

import json
import datetime
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

setup(
name='LnkParse3',
version='1.2.1',
version='1.3.0',
description='Windows Shortcut file (LNK) parser',
long_description=long_description,
long_description_content_type="text/markdown",
Expand Down

0 comments on commit c34340c

Please sign in to comment.