Skip to content

Commit b8f08b6

Browse files
committed
Bump version: 1.4.0 -> 1.5.0
1 parent 9e49ba7 commit b8f08b6

File tree

4 files changed

+10
-3
lines changed

4 files changed

+10
-3
lines changed

.bumpversion.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.4.0
2+
current_version = 1.5.0
33
commit = True
44
tag = True
55
message = Bump version: {current_version} -> {new_version}

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.5.0] - 2024-05-19
11+
### Changed
12+
- Try UTF-8 encoding when decoding by specified codepage fails.
13+
- Change plain text output form to YAML-like style.
14+
### Fixed
15+
- Add missing import to `shell_item`.
16+
1017
## [1.4.0] - 2024-03-19
1118
### Added
1219
- Add support to process unknown (`Unknown`) blocks in `ExtraData` section

LnkParse3/lnk_file.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__description__ = "Windows Shortcut file (LNK) parser"
44
__author__ = "Matmaus"
5-
__version__ = "1.4.0"
5+
__version__ = "1.5.0"
66

77
import json
88
import datetime

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
setup(
99
name='LnkParse3',
10-
version='1.4.0',
10+
version='1.5.0',
1111
description='Windows Shortcut file (LNK) parser',
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)