Skip to content

Commit

Permalink
Release of version 1.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
mbracht-ifx committed Aug 29, 2024
1 parent 37a3f33 commit 8b253be
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 28 deletions.
1 change: 0 additions & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@
[submodule "extras/optiga-trust-m/external/optiga"]
path = extras/optiga-trust-m/external/optiga
url = https:/Infineon/optiga-trust-m.git
branch = release-v5.1.0
18 changes: 0 additions & 18 deletions .reuse/dep5

This file was deleted.

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

## 1.4.1 (2024-08-27)
## 1.4.2 (2024-08-29)

### Fixed
- Removed .reuse/dep5
- Cleaned setup.py
- Date of relese 1.4.1 fixed

## 1.4.1 (2024-08-29)

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

### Fixed
- Added optigatrust-libusb-win-amd64 library


## 1.4.0 (2024-08-08)

### Added
Expand Down
6 changes: 0 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,12 +95,6 @@ def run(self):
"optigatrust": __package_root_dir,
}

with open(os.path.join(__package_root_dir, "version.py")) as init_root:
for line in init_root:
if line.startswith("__version_info__"):
__version_tuple__ = eval(line.split("=")[1])
__version = ".".join([str(x) for x in __version_tuple__])

if __name__ == '__main__':
setup(
name=__name,
Expand Down
2 changes: 1 addition & 1 deletion src/optigatrust/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

"""Library version"""

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

0 comments on commit 8b253be

Please sign in to comment.