Skip to content

Commit 8b253be

Browse files
committed
Release of version 1.4.2
1 parent 37a3f33 commit 8b253be

File tree

5 files changed

+9
-28
lines changed

5 files changed

+9
-28
lines changed

.gitmodules

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@
33
[submodule "extras/optiga-trust-m/external/optiga"]
44
path = extras/optiga-trust-m/external/optiga
55
url = https://github.com/Infineon/optiga-trust-m.git
6-
branch = release-v5.1.0

.reuse/dep5

Lines changed: 0 additions & 18 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## 1.4.1 (2024-08-27)
8+
## 1.4.2 (2024-08-29)
9+
10+
### Fixed
11+
- Removed .reuse/dep5
12+
- Cleaned setup.py
13+
- Date of relese 1.4.1 fixed
14+
15+
## 1.4.1 (2024-08-29)
916

1017
### Changed
1118
- Migrated from .reuse/dep5 to REUSE.toml
1219

1320
### Fixed
1421
- Added optigatrust-libusb-win-amd64 library
1522

16-
1723
## 1.4.0 (2024-08-08)
1824

1925
### Added

setup.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,12 +95,6 @@ def run(self):
9595
"optigatrust": __package_root_dir,
9696
}
9797

98-
with open(os.path.join(__package_root_dir, "version.py")) as init_root:
99-
for line in init_root:
100-
if line.startswith("__version_info__"):
101-
__version_tuple__ = eval(line.split("=")[1])
102-
__version = ".".join([str(x) for x in __version_tuple__])
103-
10498
if __name__ == '__main__':
10599
setup(
106100
name=__name,

src/optigatrust/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55

66
"""Library version"""
77

8-
__version__ = "1.4.1"
8+
__version__ = "1.4.2"
99
__version_info__ = tuple(int(i) for i in __version__.split(".") if i.isdigit())

0 commit comments

Comments
 (0)